Turned CPU detection into a function

This commit is contained in:
T. Joseph Carter 2015-02-02 07:13:01 -08:00
parent 2c6e9e1a31
commit 52756be36a
1 changed files with 29 additions and 24 deletions

View File

@ -2,6 +2,8 @@
# vi: ts=3 sw=3 et
# Architecture Assignment
config_cpu() {
[ -n "${2}" ] && ARCH=${1}
[ -z "${ARCH}" ] && ARCH="`uname -m`"
case "${ARCH}" in
x86_64)
@ -26,6 +28,9 @@ if [ -n "${PROCESSOR_ARCHITEW6432}" -a "${PROCESSOR_ARCHITEW6432}" = "AMD64" ];
ARCH=x86_64
X86=true && X86_64=true
fi
}
config_cpu
if [ -z "$JOBS" ]; then
if command -v nproc >/dev/null; then