From d374667257cf39012df31c02847e3cf1c3f7d6e6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Storsj=C3=B6?= Date: Thu, 11 Mar 2021 22:17:48 +0200 Subject: [PATCH] [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 --- compiler-rt/lib/builtins/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/builtins/CMakeLists.txt b/compiler-rt/lib/builtins/CMakeLists.txt index f171a3e..efdc987 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 -- 2.7.4