Skip to content

Commit

Permalink
unleash-client-cpp: disable armv8 for v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Mar 23, 2024
1 parent b92492f commit 412cc15
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipes/unleash-client-cpp/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ def validate(self):
raise ConanInvalidConfiguration(
f"{self.ref} requires C++{self._min_cppstd}, which your compiler does not support."
)
if self.version == "1.1.1" and self.settings.arch == "armv8":
raise ConanInvalidConfiguration("armv8 is not supported by unleash-client-cpp 1.1.1")

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
Expand Down

0 comments on commit 412cc15

Please sign in to comment.