We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d0fd6f commit 59cd296Copy full SHA for 59cd296
recipes/cpr/all/conanfile.py
@@ -152,7 +152,7 @@ def validate(self):
152
if self.options.shared and is_msvc(self) and is_msvc_static_runtime(self):
153
raise ConanInvalidConfiguration("Visual Studio build for shared library with MT runtime is not supported")
154
155
- if Version(self.version) == "1.9.0" and self.settings.compiler == "gcc" and Version(self.settings.compiler.version) < "6":
+ if Version(self.version) >= "1.9.0" and self.settings.compiler == "gcc" and Version(self.settings.compiler.version) < "6":
156
raise ConanInvalidConfiguration(f"{self.ref} doesn't support gcc < 6")
157
158
def source(self):
0 commit comments