Skip to content

Commit 186f435

Browse files
Move static config for target LLVM into caches
1 parent 7ec4021 commit 186f435

File tree

3 files changed

+22
-11
lines changed

3 files changed

+22
-11
lines changed
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
set(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR YES CACHE BOOL "")
2+
3+
set(COMPILER_RT_DEFAULT_TARGET_ONLY YES CACHE BOOL "")
4+
set(COMPILER_RT_BUILD_BUILTINS NO CACHE BOOL "")
5+
set(COMPILER_RT_BUILD_CRT NO CACHE BOOL "")
6+
set(COMPILER_RT_BUILD_LIBFUZZER NO CACHE BOOL "")
7+
set(COMPILER_RT_BUILD_ORC NO CACHE BOOL "")
8+
set(COMPILER_RT_BUILD_XRAY NO CACHE BOOL "")
9+
set(COMPILER_RT_BUILD_PROFILE YES CACHE BOOL "")
10+
set(COMPILER_RT_BUILD_SANITIZERS YES CACHE BOOL "")
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
set(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR YES CACHE BOOL "")
2+
3+
set(COMPILER_RT_DEFAULT_TARGET_ONLY YES CACHE BOOL "")
4+
set(COMPILER_RT_BUILD_BUILTINS NO CACHE BOOL "")
5+
set(COMPILER_RT_BUILD_CRT NO CACHE BOOL "")
6+
set(COMPILER_RT_BUILD_LIBFUZZER NO CACHE BOOL "")
7+
set(COMPILER_RT_BUILD_ORC NO CACHE BOOL "")
8+
set(COMPILER_RT_BUILD_XRAY NO CACHE BOOL "")
9+
set(COMPILER_RT_BUILD_PROFILE YES CACHE BOOL "")
10+
set(COMPILER_RT_BUILD_SANITIZERS YES CACHE BOOL "")

utils/build.ps1

+2-11
Original file line numberDiff line numberDiff line change
@@ -1626,11 +1626,10 @@ function Build-Sanitizers([Platform]$Platform, $Arch) {
16261626
-Platform $Platform `
16271627
-UseBuiltCompilers C,CXX `
16281628
-BuildTargets "install-compiler-rt" `
1629+
-CacheScript $SourceCache\swift\cmake\caches\LLVM-$Platform-$($Arch.LLVMName).cmake `
16291630
-Defines (@{
16301631
CMAKE_SYSTEM_NAME = $Platform.ToString();
16311632
LLVM_DIR = "$LLVMTargetCache\lib\cmake\llvm";
1632-
LLVM_ENABLE_PER_TARGET_RUNTIME_DIR = "YES";
1633-
COMPILER_RT_DEFAULT_TARGET_ONLY = "YES";
16341633
})
16351634

16361635
Build-CMakeProject `
@@ -1641,18 +1640,10 @@ function Build-Sanitizers([Platform]$Platform, $Arch) {
16411640
-Platform $Platform `
16421641
-UseBuiltCompilers C,CXX `
16431642
-BuildTargets "install-compiler-rt" `
1643+
-CacheScript $SourceCache\swift\cmake\caches\LLVM-$Platform-$($Arch.LLVMName).cmake `
16441644
-Defines (@{
16451645
CMAKE_SYSTEM_NAME = $Platform.ToString();
16461646
LLVM_DIR = "$LLVMTargetCache\lib\cmake\llvm";
1647-
LLVM_ENABLE_PER_TARGET_RUNTIME_DIR = "YES";
1648-
COMPILER_RT_DEFAULT_TARGET_ONLY = "YES";
1649-
COMPILER_RT_BUILD_BUILTINS = "NO";
1650-
COMPILER_RT_BUILD_CRT = "NO";
1651-
COMPILER_RT_BUILD_LIBFUZZER = "NO";
1652-
COMPILER_RT_BUILD_ORC = "NO";
1653-
COMPILER_RT_BUILD_XRAY = "NO";
1654-
COMPILER_RT_BUILD_PROFILE = "YES";
1655-
COMPILER_RT_BUILD_SANITIZERS = "YES";
16561647
})
16571648
}
16581649

0 commit comments

Comments
 (0)