From c1bee49cac710af467f6450e104f920eafe344f7 Mon Sep 17 00:00:00 2001 From: Cherry Zhang Date: Sun, 18 Sep 2016 15:28:41 -0400 Subject: [PATCH] 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 TryBot-Result: Gobot Gobot Reviewed-by: David Crawshaw --- src/cmd/dist/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 42fd914bb1..4587143b1e 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -712,7 +712,7 @@ func (t *tester) internalLink() bool { // Internally linking cgo is incomplete on some architectures. // https://golang.org/issue/10373 // 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 true