We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 183ca7f commit ad75530Copy full SHA for ad75530
triplets/x64-win-llvm/x64-win-llvm.toolchain.cmake
@@ -50,7 +50,10 @@ set(ignore_werror "/WX-")
50
cmake_language(DEFER CALL add_compile_options "/WX-") # make sure the flag is added at the end!
51
52
# general architecture flags
53
-set(arch_flags "-mcrc32")
+set(arch_flags "")
54
+if(VCPKG_TARGET_ARCHITECTURE STREQUAL x64)
55
+ string(APPEND arch_flags "-mcrc32")
56
+endif()
57
# -mcrc32 for libpq
58
# -mrtm for tbb (will break qtdeclarative since it cannot run the executables in CI)
59
# -msse4.2 for everything which normally cl can use. (Otherwise strict sse2 only.)
0 commit comments