mirror of
https://github.com/golang/go
synced 2024-11-18 00:54:45 -07:00
cmd/dist, cmd/go: run testshared on arm64
And enable PIE in the go tool. Change-Id: Ibb60ccfe62518cde6e33080bbc78bfcbecff6a4e Reviewed-on: https://go-review.googlesource.com/14000 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: David Crawshaw <crawshaw@golang.org>
This commit is contained in:
parent
4bae454d68
commit
25a28da080
2
src/cmd/dist/test.go
vendored
2
src/cmd/dist/test.go
vendored
@ -592,7 +592,7 @@ func (t *tester) supportedBuildmode(mode string) bool {
|
|||||||
return false
|
return false
|
||||||
case "shared":
|
case "shared":
|
||||||
switch pair {
|
switch pair {
|
||||||
case "linux-amd64", "linux-arm", "linux-ppc64le":
|
case "linux-amd64", "linux-arm", "linux-arm64", "linux-ppc64le":
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
|
@ -375,7 +375,7 @@ func buildModeInit() {
|
|||||||
fatalf("-buildmode=pie not supported by gccgo")
|
fatalf("-buildmode=pie not supported by gccgo")
|
||||||
} else {
|
} else {
|
||||||
switch platform {
|
switch platform {
|
||||||
case "linux/arm", "android/arm", "linux/amd64", "android/amd64", "linux/ppc64le":
|
case "linux/arm", "android/arm", "linux/amd64", "android/amd64", "linux/arm64", "linux/ppc64le":
|
||||||
codegenArg = "-shared"
|
codegenArg = "-shared"
|
||||||
default:
|
default:
|
||||||
fatalf("-buildmode=pie not supported on %s\n", platform)
|
fatalf("-buildmode=pie not supported on %s\n", platform)
|
||||||
|
Loading…
Reference in New Issue
Block a user