community/go: add mips arches

This commit is contained in:
Nils Andreas Svee 2017-12-10 01:18:12 +01:00 committed by Timo Teräs
parent 13d404cff2
commit 21f49fd0f8

View File

@ -51,6 +51,10 @@ s390x) export GOARCH="s390x" ;;
x86) export GOARCH="386" GO386=387 ;; x86) export GOARCH="386" GO386=387 ;;
x86_64) export GOARCH="amd64" ;; x86_64) export GOARCH="amd64" ;;
ppc64le) export GOARCH="ppc64le" ;; ppc64le) export GOARCH="ppc64le" ;;
mips) export GOARCH="mips" ;;
mips64) export GOARCH="mips64" ;;
mips64el) export GOARCH="mips64le" ;;
mipsel) export GOARCH="mipsle" ;;
*) die "Unsupported arch" ;; *) die "Unsupported arch" ;;
esac esac