1
0
forked from Alepha/Alepha

Get processor count when building on FreeBSD

This commit is contained in:
2024-05-30 01:14:30 -04:00
parent 90531755f8
commit a3302ebc82

View File

@ -1,8 +1,13 @@
# You can use this makefile in your
# build directory to drive ninja builds.
processor_count=$(shell grep -c "^processor" /proc/cpuinfo)
#count=$(shell expr ${processor_count} - 1)
# The makefile requires gnu make
ifneq ("$(wildcard /proc/cpuinfo)","")
processor_count=$(shell grep -c "^processor" /proc/cpuinfo)
else # Assume FreeBSD for now...
processor_count=`sysctl -n kern.smp.cpus`
endif
count=$(shell expr $(processor_count) - 1 )
__primary: test