allwinner_a64/android/external/toolchain-utils/go/go_local
2018-08-08 16:14:42 +08:00

8 lines
139 B
Bash
Executable file

#!/bin/bash
# Invoke the Go compiler for localhost.
GOOS="linux" GOARCH="amd64" CGO_ENABLED="1" \
CC="gcc" \
CXX="g++" \
exec go "$@"