Skip to content

Commit

Permalink
Build GCC with as many threads as available
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Mar 15, 2024
1 parent e126ceb commit c4ece1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ci/docker/host-x86_64/dist-x86_64-linux/build-gccjit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c4ece1f

Please sign in to comment.