Skip to content

Commit cf748a9

Browse files
Exclude Anroid targets for the moment
1 parent 934c9e3 commit cf748a9

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

cmake/caches/Windows-aarch64.cmake

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ set(default_targets
3131
x86_64-unknown-windows-msvc
3232
aarch64-unknown-windows-msvc
3333
i686-unknown-windows-msvc)
34+
set(LLVM_RUNTIME_TARGETS ${default_targets} CACHE STRING "")
35+
3436
# Build the android builtins if NDK path is provided.
3537
if(NOT "$ENV{NDKPATH}" STREQUAL "")
3638
list(APPEND default_targets
@@ -41,7 +43,6 @@ if(NOT "$ENV{NDKPATH}" STREQUAL "")
4143
endif()
4244

4345
set(LLVM_BUILTIN_TARGETS ${default_targets} CACHE STRING "")
44-
set(LLVM_RUNTIME_TARGETS ${default_targets} CACHE STRING "")
4546

4647
foreach(target ${LLVM_RUNTIME_TARGETS})
4748
set(RUNTIMES_${target}_LLVM_ENABLE_RUNTIMES

cmake/caches/Windows-x86_64.cmake

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ set(default_targets
3131
x86_64-unknown-windows-msvc
3232
aarch64-unknown-windows-msvc
3333
i686-unknown-windows-msvc)
34+
set(LLVM_RUNTIME_TARGETS ${default_targets} CACHE STRING "")
35+
3436
# Build the android builtins if NDK path is provided.
3537
if(NOT "$ENV{NDKPATH}" STREQUAL "")
3638
list(APPEND default_targets
@@ -41,7 +43,6 @@ if(NOT "$ENV{NDKPATH}" STREQUAL "")
4143
endif()
4244

4345
set(LLVM_BUILTIN_TARGETS ${default_targets} CACHE STRING "")
44-
set(LLVM_RUNTIME_TARGETS ${default_targets} CACHE STRING "")
4546

4647
foreach(target ${LLVM_RUNTIME_TARGETS})
4748
set(RUNTIMES_${target}_LLVM_ENABLE_RUNTIMES

utils/build.ps1

-3
Original file line numberDiff line numberDiff line change
@@ -2776,9 +2776,6 @@ if (-not $SkipBuild) {
27762776
foreach ($Arch in $WindowsSDKArchs) {
27772777
Invoke-BuildStep Build-Sanitizers Windows $Arch $InstallTo
27782778
}
2779-
foreach ($Arch in $AndroidSDKArchs) {
2780-
Invoke-BuildStep Build-Sanitizers Windows $Arch $InstallTo
2781-
}
27822779
}
27832780

27842781
if ($Clean) {

0 commit comments

Comments
 (0)