mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-04 07:15:49 +00:00
tool/gocross: treat empty GOOS/GOARCH as native GOOS/GOARCH
Tracking down the side effect can otherwise be a pain, for example on Darwin an empty GOOS resulted in CGO being implicitly disabled. The user intended for `export GOOS=` to act like unset, and while this is a misunderstanding, the main toolchain would treat it this way. Fixes tailscale/corp#20059 Signed-off-by: James Tucker <james@tailscale.com>
This commit is contained in:
parent
14c8b674ea
commit
024376e7e1
@ -4,6 +4,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"cmp"
|
||||||
"fmt"
|
"fmt"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
@ -32,8 +33,8 @@ func autoflagsForTest(argv []string, env *Environment, goroot, nativeGOOS, nativ
|
|||||||
subcommand = ""
|
subcommand = ""
|
||||||
|
|
||||||
cc = "cc"
|
cc = "cc"
|
||||||
targetOS = env.Get("GOOS", nativeGOOS)
|
targetOS = cmp.Or(env.Get("GOOS", ""), nativeGOOS)
|
||||||
targetArch = env.Get("GOARCH", nativeGOARCH)
|
targetArch = cmp.Or(env.Get("GOARCH", ""), nativeGOARCH)
|
||||||
buildFlags = []string{"-trimpath"}
|
buildFlags = []string{"-trimpath"}
|
||||||
cgoCflags = []string{"-O3", "-std=gnu11"}
|
cgoCflags = []string{"-O3", "-std=gnu11"}
|
||||||
cgoLdflags []string
|
cgoLdflags []string
|
||||||
|
@ -275,6 +275,64 @@ GOMIPS=softfloat (was <nil>)
|
|||||||
GOOS=darwin (was <nil>)
|
GOOS=darwin (was <nil>)
|
||||||
GOROOT=/goroot (was <nil>)
|
GOROOT=/goroot (was <nil>)
|
||||||
GOTOOLCHAIN=local (was <nil>)
|
GOTOOLCHAIN=local (was <nil>)
|
||||||
|
TS_LINK_FAIL_REFLECT=0 (was <nil>)`,
|
||||||
|
wantArgv: []string{
|
||||||
|
"gocross", "build",
|
||||||
|
"-trimpath",
|
||||||
|
"-tags=tailscale_go,omitidna,omitpemdecrypt",
|
||||||
|
"-ldflags", "-X tailscale.com/version.longStamp=1.2.3-long -X tailscale.com/version.shortStamp=1.2.3 -X tailscale.com/version.gitCommitStamp=abcd -X tailscale.com/version.extraGitCommitStamp=defg",
|
||||||
|
"./cmd/tailcontrol",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "darwin_arm64_to_darwin_arm64_empty_goos",
|
||||||
|
argv: []string{"gocross", "build", "./cmd/tailcontrol"},
|
||||||
|
env: map[string]string{
|
||||||
|
"GOOS": "",
|
||||||
|
},
|
||||||
|
goroot: "/goroot",
|
||||||
|
nativeGOOS: "darwin",
|
||||||
|
nativeGOARCH: "arm64",
|
||||||
|
|
||||||
|
envDiff: `CC=cc (was <nil>)
|
||||||
|
CGO_CFLAGS=-O3 -std=gnu11 (was <nil>)
|
||||||
|
CGO_ENABLED=1 (was <nil>)
|
||||||
|
CGO_LDFLAGS= (was <nil>)
|
||||||
|
GOARCH=arm64 (was <nil>)
|
||||||
|
GOARM=5 (was <nil>)
|
||||||
|
GOMIPS=softfloat (was <nil>)
|
||||||
|
GOOS=darwin (was )
|
||||||
|
GOROOT=/goroot (was <nil>)
|
||||||
|
GOTOOLCHAIN=local (was <nil>)
|
||||||
|
TS_LINK_FAIL_REFLECT=0 (was <nil>)`,
|
||||||
|
wantArgv: []string{
|
||||||
|
"gocross", "build",
|
||||||
|
"-trimpath",
|
||||||
|
"-tags=tailscale_go,omitidna,omitpemdecrypt",
|
||||||
|
"-ldflags", "-X tailscale.com/version.longStamp=1.2.3-long -X tailscale.com/version.shortStamp=1.2.3 -X tailscale.com/version.gitCommitStamp=abcd -X tailscale.com/version.extraGitCommitStamp=defg",
|
||||||
|
"./cmd/tailcontrol",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "darwin_arm64_to_darwin_arm64_empty_goarch",
|
||||||
|
argv: []string{"gocross", "build", "./cmd/tailcontrol"},
|
||||||
|
env: map[string]string{
|
||||||
|
"GOARCH": "",
|
||||||
|
},
|
||||||
|
goroot: "/goroot",
|
||||||
|
nativeGOOS: "darwin",
|
||||||
|
nativeGOARCH: "arm64",
|
||||||
|
|
||||||
|
envDiff: `CC=cc (was <nil>)
|
||||||
|
CGO_CFLAGS=-O3 -std=gnu11 (was <nil>)
|
||||||
|
CGO_ENABLED=1 (was <nil>)
|
||||||
|
CGO_LDFLAGS= (was <nil>)
|
||||||
|
GOARCH=arm64 (was )
|
||||||
|
GOARM=5 (was <nil>)
|
||||||
|
GOMIPS=softfloat (was <nil>)
|
||||||
|
GOOS=darwin (was <nil>)
|
||||||
|
GOROOT=/goroot (was <nil>)
|
||||||
|
GOTOOLCHAIN=local (was <nil>)
|
||||||
TS_LINK_FAIL_REFLECT=0 (was <nil>)`,
|
TS_LINK_FAIL_REFLECT=0 (was <nil>)`,
|
||||||
wantArgv: []string{
|
wantArgv: []string{
|
||||||
"gocross", "build",
|
"gocross", "build",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user