From e8d4c16524c0a1d12f4366822f0ede47f50a32d6 Mon Sep 17 00:00:00 2001 From: hybridOL Date: Tue, 6 Oct 2015 18:09:10 +0200 Subject: [PATCH] PROCESSES could be 0 in case of only one processor. Just take number of processes as number of jobs. --- tools/unix/build_omim.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/unix/build_omim.sh b/tools/unix/build_omim.sh index ba3db79cb9..5886329ead 100755 --- a/tools/unix/build_omim.sh +++ b/tools/unix/build_omim.sh @@ -67,7 +67,7 @@ if [ "$(uname -s)" == "Darwin" ]; then PROCESSES=4 else SPEC=linux-clang-libc++ - PROCESSES=$(($(nproc) / 2)) + PROCESSES=$(nproc) fi build_conf()