Auto merge of #2696 - str4d:macos-build-fixes, r=str4d
Cross-platform build.sh This enables `zcutil/build.sh` to be used on MacOS, and likely other non-Linux platforms.
This commit is contained in:
@@ -2,6 +2,22 @@
|
|||||||
|
|
||||||
set -eu -o pipefail
|
set -eu -o pipefail
|
||||||
|
|
||||||
|
function cmd_pref() {
|
||||||
|
if type -p "$2" > /dev/null; then
|
||||||
|
eval "$1=$2"
|
||||||
|
else
|
||||||
|
eval "$1=$3"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# If a g-prefixed version of the command exists, use it preferentially.
|
||||||
|
function gprefix() {
|
||||||
|
cmd_pref "$1" "g$2" "$2"
|
||||||
|
}
|
||||||
|
|
||||||
|
gprefix READLINK readlink
|
||||||
|
cd "$(dirname "$("$READLINK" -f "$0")")/.."
|
||||||
|
|
||||||
# Allow user overrides to $MAKE. Typical usage for users who need it:
|
# Allow user overrides to $MAKE. Typical usage for users who need it:
|
||||||
# MAKE=gmake ./zcutil/build.sh -j$(nproc)
|
# MAKE=gmake ./zcutil/build.sh -j$(nproc)
|
||||||
if [[ -z "${MAKE-}" ]]; then
|
if [[ -z "${MAKE-}" ]]; then
|
||||||
@@ -11,10 +27,10 @@ fi
|
|||||||
# Allow overrides to $BUILD and $HOST for porters. Most users will not need it.
|
# Allow overrides to $BUILD and $HOST for porters. Most users will not need it.
|
||||||
# BUILD=i686-pc-linux-gnu ./zcutil/build.sh
|
# BUILD=i686-pc-linux-gnu ./zcutil/build.sh
|
||||||
if [[ -z "${BUILD-}" ]]; then
|
if [[ -z "${BUILD-}" ]]; then
|
||||||
BUILD=x86_64-unknown-linux-gnu
|
BUILD="$(./depends/config.guess)"
|
||||||
fi
|
fi
|
||||||
if [[ -z "${HOST-}" ]]; then
|
if [[ -z "${HOST-}" ]]; then
|
||||||
HOST=x86_64-unknown-linux-gnu
|
HOST="$BUILD"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Allow override to $CC and $CXX for porters. Most users will not need it.
|
# Allow override to $CC and $CXX for porters. Most users will not need it.
|
||||||
@@ -58,7 +74,6 @@ EOF
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
cd "$(dirname "$(readlink -f "$0")")/.."
|
|
||||||
|
|
||||||
# If --enable-lcov is the first argument, enable lcov coverage support:
|
# If --enable-lcov is the first argument, enable lcov coverage support:
|
||||||
LCOV_ARG=''
|
LCOV_ARG=''
|
||||||
|
|||||||
Reference in New Issue
Block a user