1
0
mirror of https://github.com/golang/go synced 2024-11-24 03:30:18 -07:00

cmd/dist: enable cgo and external linking on linux/mips64x

Fixes #14126

Change-Id: I21c8e06c01d3ef02ee09dc185d4443e2da8fd52b
Reviewed-on: https://go-review.googlesource.com/19809
Reviewed-by: Minux Ma <minux@golang.org>
This commit is contained in:
Cherry Zhang 2016-04-27 22:18:44 -04:00 committed by Minux Ma
parent 094e5a9288
commit 1cec0fec8c
2 changed files with 3 additions and 3 deletions

View File

@ -1096,8 +1096,8 @@ var cgoEnabled = map[string]bool{
"linux/arm64": true,
"linux/ppc64": false,
"linux/ppc64le": true,
"linux/mips64": false,
"linux/mips64le": false,
"linux/mips64": true,
"linux/mips64le": true,
"linux/s390x": true,
"android/386": true,
"android/amd64": true,

View File

@ -640,7 +640,7 @@ func (t *tester) extLink() bool {
"darwin-arm", "darwin-arm64",
"dragonfly-386", "dragonfly-amd64",
"freebsd-386", "freebsd-amd64", "freebsd-arm",
"linux-386", "linux-amd64", "linux-arm", "linux-arm64", "linux-ppc64le",
"linux-386", "linux-amd64", "linux-arm", "linux-arm64", "linux-ppc64le", "linux-mips64", "linux-mips64le",
"netbsd-386", "netbsd-amd64",
"openbsd-386", "openbsd-amd64",
"windows-386", "windows-amd64":