From eb831a1e69cbed16e656fd7877f3544a1f442bc0 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 26 Feb 2021 13:40:25 -0500 Subject: [PATCH] Use only 4 cores for now to prevent running out of RAM --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index de066b6..3476061 100755 --- a/build.sh +++ b/build.sh @@ -4,7 +4,7 @@ UNAME=$(uname) if [ "$UNAME" == "Linux" ] ; then - JOBS=$(nproc) + JOBS=4 elif [ "$UNAME" == "FreeBSD" ] ; then JOBS=$(nproc) elif [ "$UNAME" == "Darwin" ] ; then