Limit fetchDependencies Parallel Building to Number of Available Cores

This commit is contained in:
DiegoAce 2018-12-20 20:08:54 -06:00
parent a01b99514e
commit ea0bbe5780

View File

@ -86,7 +86,7 @@ build_repo() {
ninja
else
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=install ..
make -j
make -j $(sysctl -n hw.activecpu)
fi
make install