1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00

Fallback for nproc for systems without GNU coreutils

This commit is contained in:
William Wennerström 2020-04-01 14:21:12 +02:00
parent 7eec3107fc
commit 06f8299e7c
No known key found for this signature in database
GPG Key ID: E1382990BEDD319B

View File

@ -11,10 +11,21 @@ error_handler()
trap error_handler ERR
num_cores()
{
# Check for cores, for systems with:
# Line 1. Linux w/ coreutils, or...
# Line 2. OpenBSD, FreeBSD, NetBSD or macOS, or...
# Line 3. Fallback for Linux w/o coreutils (glibc).
nproc \
|| sysctl -n hw.ncpu \
|| getconf _NPROCESSORS_ONLN 2>/dev/null
}
./bootstrap.sh
tests=()
MAKE="make --quiet -j$(nproc)"
MAKE="make --quiet -j$(num_cores)"
CC="gcc"
case $(uname | tr '[:upper:]' '[:lower:]') in