forked from organicmaps/organicmaps
PROCESSES could be 0 in case of only one processor. Just take number of processes as number of jobs.
This commit is contained in:
parent
ea7634bf04
commit
e8d4c16524
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ if [ "$(uname -s)" == "Darwin" ]; then
|
|||
PROCESSES=4
|
||||
else
|
||||
SPEC=linux-clang-libc++
|
||||
PROCESSES=$(($(nproc) / 2))
|
||||
PROCESSES=$(nproc)
|
||||
fi
|
||||
|
||||
build_conf()
|
||||
|
|
Loading…
Add table
Reference in a new issue