1
0
mirror of https://github.com/golang/go synced 2024-09-30 22:18:32 -06:00

cmd/dist: fix internal linking check for mips64le

Fix mips64le build.

Change-Id: Icf1b4901655463f582b49054a88edfb06ad6c676
Reviewed-on: https://go-review.googlesource.com/29281
Run-TryBot: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: David Crawshaw <crawshaw@golang.org>
This commit is contained in:
Cherry Zhang 2016-09-18 15:28:41 -04:00
parent 964639cc33
commit c1bee49cac

View File

@ -712,7 +712,7 @@ func (t *tester) internalLink() bool {
// Internally linking cgo is incomplete on some architectures. // Internally linking cgo is incomplete on some architectures.
// https://golang.org/issue/10373 // https://golang.org/issue/10373
// https://golang.org/issue/14449 // https://golang.org/issue/14449
if t.goarch == "arm64" || t.goarch == "mips64" { if t.goarch == "arm64" || t.goarch == "mips64" || t.goarch == "mips64le" {
return false return false
} }
return true return true