Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(#23474) simdjson/3.9.1: remove unnecessary constraints #23502

Merged
merged 5 commits into from
Jun 12, 2024
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading