From 5b7cc97743791eb2500ca74aa8668964aba10f75 Mon Sep 17 00:00:00 2001 From: alpine-mips-patches Date: Thu, 22 Nov 2018 15:03:04 +0000 Subject: community/go: fix target float ABI on mips* --- community/go/APKBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'community/go') diff --git a/community/go/APKBUILD b/community/go/APKBUILD index 350c226fe6d..72872752d5f 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 -- cgit v1.2.3