12 lines
161 B
Bash
12 lines
161 B
Bash
#! @shell@
|
|
set -eu -o pipefail +o posix
|
|
shopt -s nullglob
|
|
|
|
if (( "${NIX_DEBUG:-0}" >= 7 )); then
|
|
set -x
|
|
fi
|
|
|
|
export GCCGO="@out@/bin/gccgo"
|
|
|
|
exec @prog@ "$@"
|