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.
1 parent 4e29148 commit c61374bCopy full SHA for c61374b
compiler-rt/lib/builtins/CMakeLists.txt
@@ -857,7 +857,9 @@ else ()
857
# CMAKE_REQUIRED_FLAGS must be a space separated string
858
# Join BUILTIN_CFLAGS_${arch} and TARGET_${arch}_CFLAGS as a
859
# space-separated string.
860
- set(CMAKE_REQUIRED_FLAGS ${BUILTIN_CFLAGS_${arch}} ${TARGET_${arch}_CFLAGS})
+ list(APPEND CMAKE_REQUIRED_FLAGS
861
+ ${BUILTIN_CFLAGS_${arch}}
862
+ ${TARGET_${arch}_CFLAGS})
863
list(JOIN CMAKE_REQUIRED_FLAGS " " CMAKE_REQUIRED_FLAGS)
864
message(STATUS "Performing additional configure checks with target flags: ${CMAKE_REQUIRED_FLAGS}")
865
# For ARM archs, exclude any VFP builtins if VFP is not supported
0 commit comments