[compiler-rt] d374667 - [compiler-rt] Use arm-specific builtins sources for arm/mingw builds
Martin Storsjö via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 13 12:22:30 PST 2021
Author: Martin Storsjö
Date: 2021-03-13T22:22:01+02:00
New Revision: d374667257cf39012df31c02847e3cf1c3f7d6e6
URL: https://github.com/llvm/llvm-project/commit/d374667257cf39012df31c02847e3cf1c3f7d6e6
DIFF: https://github.com/llvm/llvm-project/commit/d374667257cf39012df31c02847e3cf1c3f7d6e6.diff
LOG: [compiler-rt] Use arm-specific builtins sources for arm/mingw builds
Previously, that configuration only used the generic sources, in
addition to the couple specifically chosen arm/mingw files.
Differential Revision: https://reviews.llvm.org/D98547
Added:
Modified:
compiler-rt/lib/builtins/CMakeLists.txt
Removed:
################################################################################
diff --git a/compiler-rt/lib/builtins/CMakeLists.txt b/compiler-rt/lib/builtins/CMakeLists.txt
index f171a3e505be..efdc9877538a 100644
--- a/compiler-rt/lib/builtins/CMakeLists.txt
+++ b/compiler-rt/lib/builtins/CMakeLists.txt
@@ -489,7 +489,7 @@ if(MINGW)
arm/aeabi_uldivmod.S
arm/chkstk.S
mingw_fixfloat.c
- ${GENERIC_SOURCES}
+ ${arm_SOURCES}
)
elseif(NOT WIN32)
# TODO the EABI sources should only be added to EABI targets
More information about the llvm-commits
mailing list