]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/dist: add openbsd/mips64 as incomplete port
authorJoel Sing <joel@sing.id.au>
Tue, 25 Aug 2020 07:52:46 +0000 (17:52 +1000)
committerJoel Sing <joel@sing.id.au>
Sat, 24 Oct 2020 15:08:50 +0000 (15:08 +0000)
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>
src/cmd/dist/build.go

index e46c33522d79fda1d21927e606da39f4ca9bf19f..d822a83e4426ab33ffa0ed8c71529142761729c0 100644 (file)
@@ -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 {