mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:27:45 +00:00
Ports: Build gcc with -j $(nproc)
GCC is a huge project that takes a lot of time to build; let's at least make this a little less painful by using all the available CPU cores.
This commit is contained in:
parent
fdbdbcd775
commit
c96c33624d
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ version=9.2.0
|
||||||
useconfigure=true
|
useconfigure=true
|
||||||
configopts="--target=i686-pc-serenity --with-sysroot=/ --with-build-sysroot=$SERENITY_ROOT/Root --with-newlib --enable-languages=c,c++ --disable-lto --disable-nls"
|
configopts="--target=i686-pc-serenity --with-sysroot=/ --with-build-sysroot=$SERENITY_ROOT/Root --with-newlib --enable-languages=c,c++ --disable-lto --disable-nls"
|
||||||
files="https://ftp.gnu.org/gnu/gcc/gcc-9.2.0/gcc-9.2.0.tar.xz gcc-9.2.0.tar.xz"
|
files="https://ftp.gnu.org/gnu/gcc/gcc-9.2.0/gcc-9.2.0.tar.xz gcc-9.2.0.tar.xz"
|
||||||
makeopts="all-gcc all-target-libgcc all-target-libstdc++-v3"
|
makeopts="all-gcc all-target-libgcc all-target-libstdc++-v3 -j $(nproc)"
|
||||||
installopts="DESTDIR=$SERENITY_ROOT/Root install-gcc install-target-libgcc install-target-libstdc++-v3"
|
installopts="DESTDIR=$SERENITY_ROOT/Root install-gcc install-target-libgcc install-target-libstdc++-v3"
|
||||||
depends="binutils"
|
depends="binutils"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue