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

Build: Add FreeBSD support (#1492)

This commit is contained in:
BenJilks 2020-03-21 08:46:30 +00:00 committed by GitHub
parent bceabd7c4b
commit c64b5e73f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 3 deletions

View file

@ -26,6 +26,10 @@ if [ `uname -s` = "OpenBSD" ]; then
export CXX=eg++
export with_gmp=/usr/local
export LDFLAGS=-Wl,-z,notext
elif [ `uname -s` = "FreeBSD" ]; then
MAKE=gmake
MD5SUM="md5 -q"
NPROC="sysctl -n hw.ncpu"
fi
echo PREFIX is "$PREFIX"

View file

@ -24,6 +24,10 @@ if [ `uname -s` = "OpenBSD" ]; then
export CXX=eg++
export with_gmp=/usr/local
export LDFLAGS=-Wl,-z,notext
elif [ `uname -s` = "FreeBSD" ]; then
MAKE=gmake
MD5SUM="md5 -q"
NPROC="sysctl -n hw.ncpu"
fi
echo PREFIX is "$PREFIX"