aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/nm
diff options
context:
space:
mode:
authorJoel Sing <joel@sing.id.au>2020-12-08 04:30:22 +1100
committerJoel Sing <joel@sing.id.au>2021-04-28 12:51:42 +0000
commitf68878f0fc542708bbe1dc4f131d32b21fac0d3c (patch)
tree3fcc65a1239e9a755c144420d7f1b27a3988885a /src/cmd/nm
parent92d1afe9890056808ed074e28f0c26380c7e4141 (diff)
downloadgo-f68878f0fc542708bbe1dc4f131d32b21fac0d3c.tar.gz
go-f68878f0fc542708bbe1dc4f131d32b21fac0d3c.zip
cmd/dist,runtime: support cgo on openbsd/mips64
Add support for cgo on openbsd/mips64. Fixes #43005 Change-Id: I2386204f53fa984a01a9d89f0b6c96455768f326 Reviewed-on: https://go-review.googlesource.com/c/go/+/275896 Trust: Joel Sing <joel@sing.id.au> Run-TryBot: Joel Sing <joel@sing.id.au> Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'src/cmd/nm')
-rw-r--r--src/cmd/nm/nm_cgo_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/nm/nm_cgo_test.go b/src/cmd/nm/nm_cgo_test.go
index d0937904a2..1544be041a 100644
--- a/src/cmd/nm/nm_cgo_test.go
+++ b/src/cmd/nm/nm_cgo_test.go
@@ -30,7 +30,7 @@ func canInternalLink() bool {
}
case "openbsd":
switch runtime.GOARCH {
- case "arm64":
+ case "arm64", "mips64":
return false
}
case "windows":