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.
package_info
1 parent 0c52858 commit 6e7eeedCopy full SHA for 6e7eeed
conanfile.py
@@ -363,3 +363,11 @@ def package_info(self):
363
self.cpp_info.components["core"].cxxflags.append("/utf-8")
364
365
self.cpp_info.components["systems"].requires = ["core"]
366
+
367
+ # https://github.com/llvm/llvm-project/issues/131410
368
+ if (
369
+ compiler == "clang"
370
+ and Version(compiler.version).major == 20
371
+ and Version(compiler.version).minor == 1
372
+ ):
373
+ self.cpp_info.components["core"].cxxflags.append("-Wno-unused-result")
0 commit comments