mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +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
Notes:
sideshowbarker
2024-07-19 10:45:17 +09:00
Author: https://github.com/bugaevc Commit: https://github.com/SerenityOS/serenity/commit/c96c33624d6 Pull-request: https://github.com/SerenityOS/serenity/pull/901
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ version=9.2.0
|
|||
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"
|
||||
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"
|
||||
depends="binutils"
|
||||
|
||||
|
|
Loading…
Reference in a new issue