about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2024-03-15 11:33:14 +0100
committerGuillaume Gomez <guillaume.gomez@huawei.com>2024-03-15 16:16:27 +0100
commitc4ece1f4c8862724fe195bf5bf0d4dcaa76b7686 (patch)
treefdf8376ae9723fae514f2f8f9023c7fcc7c325b6 /src/ci/docker
parente126ceb46d5f24015f0644df5d360fa9209d48be (diff)
downloadrust-c4ece1f4c8862724fe195bf5bf0d4dcaa76b7686.tar.gz
rust-c4ece1f4c8862724fe195bf5bf0d4dcaa76b7686.zip
Build GCC with as many threads as available
Diffstat (limited to 'src/ci/docker')
-rwxr-xr-xsrc/ci/docker/host-x86_64/dist-x86_64-linux/build-gccjit.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ci/docker/host-x86_64/dist-x86_64-linux/build-gccjit.sh b/src/ci/docker/host-x86_64/dist-x86_64-linux/build-gccjit.sh
index 2c65522cc1e..b22d60f2b1d 100755
--- a/src/ci/docker/host-x86_64/dist-x86_64-linux/build-gccjit.sh
+++ b/src/ci/docker/host-x86_64/dist-x86_64-linux/build-gccjit.sh
@@ -16,16 +16,16 @@ mkdir ../gcc-build ../gcc-install
 cd ../gcc-build
 
 # Building GCC.
-../gcc-src/configure \
+hide_output \
+  ../gcc-src/configure \
     --enable-host-shared \
     --enable-languages=jit \
     --enable-checking=release \
     --disable-bootstrap \
     --disable-multilib \
     --prefix=$(pwd)/../gcc-install \
-    --quiet
 
-hide_output make
+hide_output make -j$(nproc)
 hide_output make install
 
 rm -rf ../gcc-src