[compiler-rt] [compiler-rt][MSVC] Update check to include clang-cl (PR #150108)
Zack Johnson via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 22 18:17:20 PDT 2025
================
@@ -594,8 +594,8 @@ set(aarch64_SOURCES
aarch64/fp_mode.c
)
-# Append sources specific to AArch64 targets that aren't supported by MSVC.
-if(NOT MSVC)
+# Append sources specific to AArch64 targets that aren't supported by cl.exe
+if(CLANG_CL OR NOT MSVC)
----------------
zacklj89 wrote:
Thanks for the reviews 👍
Apologies for rushing the original PR in without testing my assumptions of clang-cl!
https://github.com/llvm/llvm-project/pull/150108
More information about the llvm-commits
mailing list