Merge pull request #424 from DiegoAce/master

Limit fetchDependencies Parallel Building to Number of Available Cores
This commit is contained in:
Bill Hollings 2018-12-21 00:19:38 -05:00 committed by GitHub
commit 8ad347d3f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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