Cuberite Forum

Full Version: FreeBSD, missing compilation dependencies
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(02-09-2016, 08:36 PM)LogicParrot Wrote: [ -> ]
(02-09-2016, 02:10 AM)DrMasik Wrote: [ -> ]If you needed number of CPU threads use:
Code:
sysctl hw.ncpu | awk '{print $2}'

Thanks, but I'd need a cross-platform way to do this.

Code:
#!/bin/sh

osName=`uname`

if [ "${osName}" = "FreeBSD" ]; then
  ncpu=`sysctl hw.ncpu | awk '{print $2}'`;
elif [ "${osName}" = "Linux" ]; then
  ncpu=`nproc`;
else
  wCount=`whereis nproc | awk '{print $2}' | wc -m`;

  if [ ${wCount} -lt 2 ]; then
    ncpu=2;
  else
    ncpu=`nproc`;
  fi
fi

echo ${ncpu}
Thanks Smile
I'll open a PR soon.
Pages: 1 2