aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sing <joel@sing.id.au>2020-08-25 17:52:46 +1000
committerJoel Sing <joel@sing.id.au>2020-10-24 15:08:50 +0000
commitd75b7f9648bb4968a5d980c4a4b7aa6ca22c4de5 (patch)
treeaf8d3146ee8824309281991e97df1f075a97975f
parent9ec0a46a15d98db9241bca7606bb0a90a3c77b01 (diff)
downloadgo-d75b7f9648bb4968a5d980c4a4b7aa6ca22c4de5.tar.gz
go-d75b7f9648bb4968a5d980c4a4b7aa6ca22c4de5.zip
cmd/dist: add openbsd/mips64 as incomplete port
Update #40995 Change-Id: Id497f7688b00658b50feb7338157e0411b861910 Reviewed-on: https://go-review.googlesource.com/c/go/+/250578 Trust: Joel Sing <joel@sing.id.au> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
-rw-r--r--src/cmd/dist/build.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cmd/dist/build.go b/src/cmd/dist/build.go
index e46c33522d..d822a83e44 100644
--- a/src/cmd/dist/build.go
+++ b/src/cmd/dist/build.go
@@ -1567,6 +1567,7 @@ var cgoEnabled = map[string]bool{
"openbsd/amd64": true,
"openbsd/arm": true,
"openbsd/arm64": true,
+ "openbsd/mips64": false,
"plan9/386": false,
"plan9/amd64": false,
"plan9/arm": false,
@@ -1579,7 +1580,8 @@ var cgoEnabled = map[string]bool{
// List of platforms which are supported but not complete yet. These get
// filtered out of cgoEnabled for 'dist list'. See golang.org/issue/28944
var incomplete = map[string]bool{
- "linux/sparc64": true,
+ "linux/sparc64": true,
+ "openbsd/mips64": true,
}
func needCC() bool {