minimal-bootstrap.musl: parallelise build

This commit is contained in:
Emily Trau
2023-09-26 22:20:35 -07:00
parent a5d9d1cf49
commit 3e95cadee8
2 changed files with 3 additions and 2 deletions
@@ -140,6 +140,7 @@ lib.makeScope
musl = callPackage ./musl {
gcc = gcc46;
gnumake = gnumake-musl;
};
stage0-posix = callPackage ./stage0-posix { };
@@ -70,8 +70,8 @@ bash.runCommand "${pname}-${version}" {
--host=${hostPlatform.config}
# Build
make
make -j $NIX_BUILD_CORES
# Install
make install
make -j $NIX_BUILD_CORES install
''