1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

Toolchain: Add macOS definitions of MD5SUM and NPROC in BuildIt.sh

This commit is contained in:
Nico Weber 2023-01-08 19:08:28 -05:00 committed by Andrew Kaster
parent f2011ad0dd
commit 491af34d36

View file

@ -49,6 +49,9 @@ elif [ "$SYSTEM_NAME" = "FreeBSD" ]; then
NPROC="sysctl -n hw.ncpu" NPROC="sysctl -n hw.ncpu"
export with_gmp=/usr/local export with_gmp=/usr/local
export with_mpfr=/usr/local export with_mpfr=/usr/local
elif [ "$SYSTEM_NAME" = "Darwin" ]; then
MD5SUM="md5 -q"
NPROC="sysctl -n hw.ncpu"
fi fi
# On at least OpenBSD, the path must exist to call realpath(3) on it # On at least OpenBSD, the path must exist to call realpath(3) on it