Fix NUMCPUS variable to allow parallel builds
This commit is contained in:
parent
b4a81b9122
commit
73212f188a
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -17,7 +17,7 @@ X86_SYSROOT=$(shell find "${NDK_PATH}" -name arch-x86 -print | \
|
|||
print $$0 " " b[2]}' | \
|
||||
sort -g -k 2 | \
|
||||
awk '{ print $$1 }' | tail -1)
|
||||
NUMCPUS=1
|
||||
NUMCPUS=$(shell grep -c '^processor' /proc/cpuinfo 2>/dev/null || echo "4" )
|
||||
TOPDIR=$(shell pwd)
|
||||
LIBLINPHONE_VERSION=$(shell cd submodules/linphone && git describe --always)
|
||||
LINPHONE_ANDROID_DEBUG_VERSION=$(shell git describe --always)
|
||||
|
|
Loading…
Reference in a new issue