From 5f943aabc8ef356970a56cd185459c6023f2ff83 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 4 Feb 2021 16:37:23 +0000 Subject: [PATCH] build: Use GO386=softfloat instead of deprecated GO386=387 for 386 builds --- bin/cross-compile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cross-compile.go b/bin/cross-compile.go index 29ca63b1e..66d7464f3 100644 --- a/bin/cross-compile.go +++ b/bin/cross-compile.go @@ -72,7 +72,7 @@ var osarches = []string{ // Special environment flags for a given arch var archFlags = map[string][]string{ - "386": {"GO386=387"}, + "386": {"GO386=softfloat"}, "mips": {"GOMIPS=softfloat"}, "mipsle": {"GOMIPS=softfloat"}, "arm-v7": {"GOARM=7"},