Skip to content

Commit 0a1b64b

Browse files
Build GCC with as many threads as available
1 parent 1d11687 commit 0a1b64b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ci/docker/host-x86_64/dist-x86_64-linux/build-gccjit.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ mkdir ../gcc-build ../gcc-install
1515
cd ../gcc-build
1616

1717
# Building GCC.
18-
../gcc-src/configure \
18+
hide_output \
19+
../gcc-src/configure \
1920
--enable-host-shared \
2021
--enable-languages=jit \
2122
--enable-checking=release \
2223
--disable-bootstrap \
2324
--disable-multilib \
2425
--prefix=$(pwd)/../gcc-install \
25-
--quiet
2626

27-
hide_output make
27+
hide_output make -j$(nproc)
2828
hide_output make install
2929

3030
rm -rf ../gcc-src

0 commit comments

Comments
 (0)