community/go-bootstrap: add mips support

This commit is contained in:
Nils Andreas Svee 2017-12-10 01:18:13 +01:00 committed by Natanael Copa
parent 4d42c5a4fe
commit 7908378124

View File

@ -51,6 +51,10 @@ build() {
x86) export GOARCH="386" ;; x86) export GOARCH="386" ;;
x86_64) export GOARCH="amd64" ;; x86_64) export GOARCH="amd64" ;;
arm*) export GOARCH="arm" ;; arm*) export GOARCH="arm" ;;
mips) export GOARCH="mips" ;;
mips64) export GOARCH="mips64" ;;
mips64el) export GOARCH="mips64le" ;;
mipsel) export GOARCH="mipsle" ;;
*) return 1 ;; *) return 1 ;;
esac esac