mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
33 lines
797 B
Bash
Executable File
33 lines
797 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Configuration
|
|
ARCH=x86_64
|
|
export TARGET=$ARCH-unknown-redox
|
|
HOST=$TARGET
|
|
|
|
# Automatic variables
|
|
ROOT="$(cd `dirname "$0"` && pwd)"
|
|
REPO="$ROOT/repo/$TARGET"
|
|
export CC="$HOST-gcc"
|
|
export XARGO_HOME="$ROOT/xargo"
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
# GNU find
|
|
FIND="gfind";
|
|
|
|
# GNU stat from Homebrew or MacPorts
|
|
if [ ! -z "$(which brew)" ]; then
|
|
STAT="$(brew --prefix)/opt/coreutils/libexec/gnubin/stat";
|
|
elif [ ! -z "$(which port)" ]; then
|
|
# TODO: find a programatic way of asking MacPorts for it's root dir.
|
|
STAT="/opt/local/opt/coreutils/libexec/gnubin/stat";
|
|
else
|
|
echo "Please install either Homebrew or MacPorts and run the boostrap script."
|
|
exit 1
|
|
fi
|
|
else
|
|
FIND="find"
|
|
STAT="stat";
|
|
fi
|