summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2017-09-13 01:43:06 -0700
committerJan Vorlicek <janvorli@microsoft.com>2017-09-13 10:43:06 +0200
commit80dd47bb5564f1cfc843c8d753096a0a3acfbe2d (patch)
treede2a4f1d75705b7bf2173e2158f8131af5a5aae8 /build.sh
parent5eac91c7101aeb02abe390935c35342432570323 (diff)
downloadcoreclr-80dd47bb5564f1cfc843c8d753096a0a3acfbe2d.tar.gz
coreclr-80dd47bb5564f1cfc843c8d753096a0a3acfbe2d.tar.bz2
coreclr-80dd47bb5564f1cfc843c8d753096a0a3acfbe2d.zip
Change how numProc is derived on Linux (#13909)
Before the decision for numProcs to run in parallel for runtests.sh was based on _NPROCESSORS_ONLN which harware which attempts to save power (eg arm(64)) this number may be < numProcs.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index d5a35d20f7..97a11c2b15 100755
--- a/build.sh
+++ b/build.sh
@@ -643,8 +643,10 @@ if [ `uname` = "FreeBSD" ]; then
__NumProc=`sysctl hw.ncpu | awk '{ print $2+1 }'`
elif [ `uname` = "NetBSD" ]; then
__NumProc=$(($(getconf NPROCESSORS_ONLN)+1))
-else
+elif [ `uname` = "Darwin" ]; then
__NumProc=$(($(getconf _NPROCESSORS_ONLN)+1))
+else
+ __NumProc=$(nproc --all)
fi
while :; do