Skip to content

Commit 8842c8c

Browse files
authored
Replace sccache with ccache for WoA bots (#68)
ccache is now available on Windows on Arm machines and this patch will enable to use to ccache instead of sccache on all Windows on Arm buildbots hosted by Linaro.
1 parent ea1f5a4 commit 8842c8c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@
268268
extra_cmake_args=[
269269
"-DCMAKE_TRY_COMPILE_CONFIGURATION=Release",
270270
"-DLLVM_TARGETS_TO_BUILD='AArch64'",
271-
"-DCMAKE_C_COMPILER_LAUNCHER=sccache",
272-
"-DCMAKE_CXX_COMPILER_LAUNCHER=sccache"])},
271+
"-DCMAKE_C_COMPILER_LAUNCHER=ccache",
272+
"-DCMAKE_CXX_COMPILER_LAUNCHER=ccache"])},
273273

274274
## ARMv8 check-all
275275
{'name' : "clang-armv8-quick",
@@ -545,8 +545,8 @@
545545
checkout_flang=True,
546546
extra_cmake_args=[
547547
"-DCMAKE_TRY_COMPILE_CONFIGURATION=Release",
548-
"-DCMAKE_C_COMPILER_LAUNCHER=sccache",
549-
"-DCMAKE_CXX_COMPILER_LAUNCHER=sccache",
548+
"-DCMAKE_C_COMPILER_LAUNCHER=ccache",
549+
"-DCMAKE_CXX_COMPILER_LAUNCHER=ccache",
550550
# FIXME: compiler-rt\lib\sanitizer_common\sanitizer_unwind_win.cpp assumes WIN64 is x86_64,
551551
# so, before that's fixed, disable everything that triggers its build.
552552
"-DCOMPILER_RT_BUILD_SANITIZERS=OFF",
@@ -1300,8 +1300,8 @@
13001300
clean=True,
13011301
test=True,
13021302
extra_cmake_args=[
1303-
"-DCMAKE_C_COMPILER_LAUNCHER=sccache",
1304-
"-DCMAKE_CXX_COMPILER_LAUNCHER=sccache",
1303+
"-DCMAKE_C_COMPILER_LAUNCHER=ccache",
1304+
"-DCMAKE_CXX_COMPILER_LAUNCHER=ccache",
13051305
'-DLLVM_LIT_ARGS=-v',
13061306
'-DLLDB_TEST_USER_ARGS=--skip-category=watchpoint'])},
13071307

0 commit comments

Comments
 (0)