Merge pull request from aktau/osx-ncpu

linux: build.sh: get number of CPUs on OSX too
This commit is contained in:
Gregory Hainaut 2014-09-12 19:28:55 +02:00
commit 31a62c18be
1 changed files with 7 additions and 1 deletions

View File

@ -87,7 +87,13 @@ else
cmake "${flags[@]}" $root 2>&1 | tee -a $log
fi
make -j "$(grep -w -c processor /proc/cpuinfo)" 2>&1 | tee -a $log
if [[ $(uname -s) == 'Darwin' ]]; then
ncpu=$(sysctl -n hw.ncpu)
else
ncpu=$(grep -w -c processor /proc/cpuinfo)
fi
make -j"$ncpu" 2>&1 | tee -a $log
make install 2>&1 | tee -a $log
exit 0