Dump log error if cpus count could not be retrieved (default: 4)
This commit is contained in:
parent
393439c721
commit
bbf3094414
1 changed files with 11 additions and 11 deletions
2
Makefile
2
Makefile
|
@ -18,7 +18,7 @@ X86_SYSROOT=$(shell find "${NDK_PATH}" -name arch-x86 -print | \
|
||||||
print $$0 " " b[2]}' | \
|
print $$0 " " b[2]}' | \
|
||||||
sort -g -k 2 | \
|
sort -g -k 2 | \
|
||||||
awk '{ print $$1 }' | tail -1)
|
awk '{ print $$1 }' | tail -1)
|
||||||
NUMCPUS=$(shell grep -c '^processor' /proc/cpuinfo || echo "4" )
|
NUMCPUS=$(shell grep -c '^processor' /proc/cpuinfo 2>/dev/null || echo "4" )
|
||||||
TOPDIR=$(shell pwd)
|
TOPDIR=$(shell pwd)
|
||||||
LINPHONE_VERSION=$(shell cd submodules/linphone && git describe --always)
|
LINPHONE_VERSION=$(shell cd submodules/linphone && git describe --always)
|
||||||
LINPHONE_ANDROID_DEBUG_VERSION=$(shell git describe --always)
|
LINPHONE_ANDROID_DEBUG_VERSION=$(shell git describe --always)
|
||||||
|
|
Loading…
Reference in a new issue