wxWidgets/build/tools/proc_count.sh
2021-07-24 16:38:28 +02:00

19 lines
292 B
Bash
Executable File

# This script outputs the number of available processors/cores plus one.
case `uname` in
Linux)
wxPROC_COUNT=`nproc`
;;
Darwin)
wxPROC_COUNT=`sysctl -n hw.ncpu`
;;
*)
wxPROC_COUNT=0
;;
esac
((wxPROC_COUNT++))
echo $wxPROC_COUNT