Closed luser closed 5 years ago
Can you send a pull request? Thanks!
You'll want to call make -f minicargo.mk PARLEVEL=$(nproc)
instead (which will tell minicaro
to run multiple jobs). Beware thepowersgang/mrustc#98 (triggered by build scripts)
Currently build.sh just runs
make -f minicargo.mk
which means it's not using more than one core. When writing scripts like this that are going to invoke make to build things I usually do something likeexport MAKEFLAGS=-j$(nproc)
to use all available cores.