Skip to content

Commit

Permalink
build-* - Pass -j to make so it creates a jobserver
Browse files Browse the repository at this point in the history
Otherwise minicargo makes its own, which may not be compatible with system make.
  • Loading branch information
thepowersgang committed May 19, 2024
1 parent b427cdb commit de4df1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build-1.19.0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ make -f minicargo.mk RUSTCSRC
make -f minicargo.mk LIBS
make -f minicargo.mk test
make -f minicargo.mk output-1.19.0/stdtest/rustc_data_structures-test_out.txt
make -f minicargo.mk output-1.19.0/rustc
make -f minicargo.mk output-1.19.0/cargo
make -f minicargo.mk output-1.19.0/rustc -j ${PARLEVEL:-1}
make -f minicargo.mk output-1.19.0/cargo -j ${PARLEVEL:-1}
./output-1.19.0/cargo --version
2 changes: 1 addition & 1 deletion build-1.54.0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ make local_tests $@
RUSTC_INSTALL_BINDIR=bin make -f minicargo.mk output-1.54.0/rustc $@
./output-1.54.0/rustc --version

LIBGIT2_SYS_USE_PKG_CONFIG=1 make -f minicargo.mk output-1.54.0/cargo $@
LIBGIT2_SYS_USE_PKG_CONFIG=1 make -f minicargo.mk output-1.54.0/cargo $@ -j ${PARLEVEL:-1}
./output-1.54.0/cargo --version

0 comments on commit de4df1f

Please sign in to comment.