Skip to content

Commit

Permalink
(#23502) (#23474) simdjson/3.9.1: remove unnecessary constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
Jie-Cheng authored Jun 12, 2024
1 parent 188d76d commit 4815af8
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions recipes/simdjson/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,6 @@ def loose_lt_semver(v1, v2):
f"{self.ref} requires C++{self._min_cppstd}, which your compiler does not fully support."
)

if self.settings.compiler == "gcc" and \
Version(self.settings.compiler.version).major == "9":
if self.settings.compiler.get_safe("libcxx") == "libstdc++11":
raise ConanInvalidConfiguration(f"{self.ref} doesn't support GCC 9 with libstdc++11.")
if self.settings.build_type == "Debug":
raise ConanInvalidConfiguration(f"{self.ref} doesn't support GCC 9 with Debug build type.")

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

Expand Down

0 comments on commit 4815af8

Please sign in to comment.