Closed jgvictores closed 7 years ago
Remaining make -j
occurrences:
install-speech-recognition.md
install-kdl.md
install-icub.md
install-travislib.md
install-aquila.md
install-openrave.md
Retrieved with: grep -Prl 'make \-j(?!\$)' --exclude-dir=.git
.
Does the regex you cite include "orphan" makes? (no -j,, should be updated too...).
Hm, no, just looked at the title and forgot about all the plain make
s around there. BTW doesn't it feel like too much clutter for such a simple task (compared to -j$(nproc)
)?
Maybe... or maybe... NPROC=$(nproc); make -j$((NPROC+1)) -l${NPROC}
??
IMO the fewer instructions the better - I'd remove NPROC=$(nproc);
and inline nproc
in following make
calls.
Done at a03df57603d6686c90d0490a42131e8c87a38729.
There are more sophisticated solutions, such as [ref]: