From a986d76ef4026f95fd11e6f639f7888c026c3d8a Mon Sep 17 00:00:00 2001 From: Max Moroz Date: Thu, 13 Aug 2020 12:58:02 -0700 Subject: [PATCH] [infra] Use 16 threads when building LLVM (#4270). (#4315) * [infra] Use 16 threads when building LLVM (#4270). * update the comment --- infra/base-images/base-clang/checkout_build_install_llvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/base-images/base-clang/checkout_build_install_llvm.sh b/infra/base-images/base-clang/checkout_build_install_llvm.sh index 45bccb2ac..b8f4f0b71 100755 --- a/infra/base-images/base-clang/checkout_build_install_llvm.sh +++ b/infra/base-images/base-clang/checkout_build_install_llvm.sh @@ -15,7 +15,7 @@ # ################################################################################ -NPROC=4 # TODO(#4270): remove or increase this depending on the build status. +NPROC=16 # See issue #4270. The compiler crashes on GCB instance with 32 vCPUs. LLVM_DEP_PACKAGES="build-essential make cmake ninja-build git python2.7 g++-multilib" apt-get install -y $LLVM_DEP_PACKAGES