blob: a1a022c059fcf75bc3409e2d807626d660434cfa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- compiler-rt/lib/builtins/CMakeLists.txt.orig 2022-06-22 16:46:24 UTC
+++ compiler-rt/lib/builtins/CMakeLists.txt
@@ -682,8 +682,6 @@ else ()
append_list_if(COMPILER_RT_ENABLE_CET -fcf-protection=full BUILTIN_CFLAGS)
endif()
- append_list_if(COMPILER_RT_HAS_FLOAT16 -DCOMPILER_RT_HAS_FLOAT16 BUILTIN_CFLAGS)
-
append_list_if(COMPILER_RT_HAS_STD_C11_FLAG -std=c11 BUILTIN_CFLAGS)
# These flags would normally be added to CMAKE_C_FLAGS by the llvm
@@ -754,6 +752,10 @@ else ()
)
set(deps_aarch64 lse_builtin_symlinks)
+ endif()
+
+ if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" AND ${arch} STREQUAL "i386"))
+ append_list_if(COMPILER_RT_HAS_FLOAT16 -DCOMPILER_RT_HAS_FLOAT16 BUILTIN_CFLAGS_${arch})
endif()
add_compiler_rt_runtime(clang_rt.builtins
|