File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,18 @@ set(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR YES CACHE BOOL "")
28
28
set (LLVM_ENABLE_PYTHON YES CACHE BOOL "" )
29
29
set (LLVM_RUNTIME_TARGETS
30
30
x86_64-unknown-windows-msvc
31
+ aarch64-unknown-windows-msvc
31
32
CACHE STRING "" )
32
33
foreach (target ${LLVM_RUNTIME_TARGETS} )
33
34
set (RUNTIMES_${target}_LLVM_ENABLE_RUNTIMES
34
35
compiler-rt
35
36
CACHE STRING "" )
36
37
set (RUNTIMES_${target}_CMAKE_MT mt CACHE STRING "" )
37
- set (RUNTIMES_${target}_CMAKE_SYSTEM_NAME Windows CACHE STRING "" )
38
+ if (${target} MATCHES windows-msvc )
39
+ set (RUNTIMES_${target}_CMAKE_SYSTEM_NAME Windows CACHE STRING "" )
40
+ endif ()
38
41
set (RUNTIMES_${target}_CMAKE_BUILD_TYPE Release CACHE STRING "" )
42
+ set (RUNTIMES_${target}_COMPILER_RT_BUILD_BUILTINS YES CACHE BOOL "" )
39
43
set (RUNTIMES_${target}_COMPILER_RT_BUILD_CRT NO CACHE BOOL "" )
40
44
set (RUNTIMES_${target}_COMPILER_RT_BUILD_LIBFUZZER NO CACHE BOOL "" )
41
45
set (RUNTIMES_${target}_COMPILER_RT_BUILD_ORC NO CACHE BOOL "" )
You can’t perform that action at this time.
0 commit comments