Use -j nproc to use all cores for speedup builds

This commit is contained in:
Nazar 2019-04-07 22:40:13 +03:00
parent 501d55bfc2
commit 108f7d3a6c
1 changed files with 5 additions and 5 deletions

10
build
View File

@ -54,11 +54,11 @@ echo "WiringPi Library"
cd wiringPi
${PFX}make uninstall
if [ x$1 = "xstatic" ]; then
make static
make -j `nproc` static
check_make_ok
${PFX}make install-static
else
make
make -j `nproc`
check_make_ok
${PFX}make install
fi
@ -69,11 +69,11 @@ echo "WiringPi Devices Library"
cd ../devLib
${PFX}make uninstall
if [ x$1 = "xstatic" ]; then
make static
make -j `nproc` static
check_make_ok
${PFX}make install-static
else
make
make -j `nproc`
check_make_ok
${PFX}make install
fi
@ -82,7 +82,7 @@ check_make_ok
echo
echo "GPIO Utility"
cd ../gpio
make
make -j `nproc`
check_make_ok
${PFX}make install
check_make_ok