0afe9d1f70
Always set `SRCTOP`, set it with abs path
llvmPackages: Bump minimum version for FreeBSD
llvmPackages_*, libgcc, compiler_rt: Hack in enough libs that one can compiler C
freebsd.compat: Rename some things to work around cc-wrapper change
0bea4a194f
/ #191724 in particular
18 lines
223 B
Bash
18 lines
223 B
Bash
#! @shell@
|
|
|
|
declare -a args=()
|
|
|
|
token=$1
|
|
shift
|
|
|
|
while (( $# )); do
|
|
if [[ "$1" = "$token" ]]; then
|
|
mapfile -t -O $(("${#args[@]}" + 1)) args
|
|
else
|
|
args+=("$1")
|
|
fi
|
|
shift
|
|
done
|
|
|
|
exec "${args[@]}"
|