PROCESSES could be 0 in case of only one processor. Just take number of processes as number of jobs.

This commit is contained in:
hybridOL 2015-10-06 18:09:10 +02:00
parent ea7634bf04
commit e8d4c16524

View file

@ -67,7 +67,7 @@ if [ "$(uname -s)" == "Darwin" ]; then
PROCESSES=4
else
SPEC=linux-clang-libc++
PROCESSES=$(($(nproc) / 2))
PROCESSES=$(nproc)
fi
build_conf()