diff options
Diffstat (limited to 'community/go')
-rw-r--r-- | community/go/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/community/go/APKBUILD b/community/go/APKBUILD index 350c226fe6..72872752d5 100644 --- a/community/go/APKBUILD +++ b/community/go/APKBUILD @@ -54,10 +54,10 @@ s390x) export GOARCH="s390x" ;; x86) export GOARCH="386" GO386=387 ;; x86_64) export GOARCH="amd64" ;; ppc64le) export GOARCH="ppc64le" ;; -mips) export GOARCH="mips" ;; -mips64) export GOARCH="mips64" ;; -mips64el) export GOARCH="mips64le" ;; -mipsel) export GOARCH="mipsle" ;; +mips) export GOARCH="mips" GOMIPS=softfloat ;; +mips64) export GOARCH="mips64" GOMIPS64=softfloat ;; +mips64el) export GOARCH="mips64le" GOMIPS64=softfloat ;; +mipsel) export GOARCH="mipsle" GOMIPS=softfloat ;; *) die "Unsupported arch" ;; esac |