build: Use GO386=softfloat instead of deprecated GO386=387 for 386 builds

This commit is contained in:
Nick Craig-Wood 2021-02-04 16:37:23 +00:00
parent 84c785bc36
commit 5f943aabc8
1 changed files with 1 additions and 1 deletions

View File

@ -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"},