[zorg] r254644 - Increase compile concurrency for sanitizer-x86_64-linux-bootstrap bot.
Ivan Krasin via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 3 12:22:19 PST 2015
Author: krasin
Date: Thu Dec 3 14:22:19 2015
New Revision: 254644
URL: http://llvm.org/viewvc/llvm-project?rev=254644&view=rev
Log:
Increase compile concurrency for sanitizer-x86_64-linux-bootstrap bot.
Summary:
After recent upgrades to sanitizer-x86_64-linux-bootstrap slave and
increased link concurrency (http://reviews.llvm.org/D15164),
the build time dropped from 4h30m to 2h40m. This change is aimed to
speed things even further.
Reviewers: eugenis
Subscribers: samsonov, kcc
Differential Revision: http://reviews.llvm.org/D15201
Modified:
zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_bootstrap.sh
Modified: zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_bootstrap.sh
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_bootstrap.sh?rev=254644&r1=254643&r2=254644&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_bootstrap.sh (original)
+++ zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_bootstrap.sh Thu Dec 3 14:22:19 2015
@@ -65,7 +65,7 @@ echo @@@BUILD_STEP build stage3/msan cla
mkdir -p ${STAGE3_MSAN_DIR}
clang_msan_path=$ROOT/${STAGE2_MSAN_DIR}/bin
-cmake_stage3_msan_options="${CMAKE_COMMON_OPTIONS} -DCMAKE_C_COMPILER=${clang_msan_path}/clang -DCMAKE_CXX_COMPILER=${clang_msan_path}/clang++ -DLLVM_PARALLEL_COMPILE_JOBS=15"
+cmake_stage3_msan_options="${CMAKE_COMMON_OPTIONS} -DCMAKE_C_COMPILER=${clang_msan_path}/clang -DCMAKE_CXX_COMPILER=${clang_msan_path}/clang++ -DLLVM_PARALLEL_COMPILE_JOBS=32"
(cd ${STAGE3_MSAN_DIR} && cmake ${cmake_stage3_msan_options} $LLVM && ninja clang) || \
echo @@@STEP_FAILURE@@@
@@ -90,7 +90,7 @@ echo @@@BUILD_STEP build stage3/asan cla
mkdir -p ${STAGE3_ASAN_DIR}
clang_asan_path=$ROOT/${STAGE2_ASAN_DIR}/bin
-cmake_stage3_asan_options="${CMAKE_COMMON_OPTIONS} -DCMAKE_C_COMPILER=${clang_asan_path}/clang -DCMAKE_CXX_COMPILER=${clang_asan_path}/clang++ -DLLVM_PARALLEL_COMPILE_JOBS=10"
+cmake_stage3_asan_options="${CMAKE_COMMON_OPTIONS} -DCMAKE_C_COMPILER=${clang_asan_path}/clang -DCMAKE_CXX_COMPILER=${clang_asan_path}/clang++ -DLLVM_PARALLEL_COMPILE_JOBS=32"
(cd ${STAGE3_ASAN_DIR} && cmake ${cmake_stage3_asan_options} $LLVM && ninja clang) || \
echo @@@STEP_FAILURE@@@
More information about the llvm-commits
mailing list