From: Heschi Kreinick Date: Tue, 4 Apr 2023 17:02:02 +0000 (-0400) Subject: cmd/dist: mark openbsd-mips64 and openbsd-ppc64 broken X-Git-Tag: go1.21rc1~1046 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d0099eff5e2e8dedd94eb1821408212c10231a47;p=gostls13.git cmd/dist: mark openbsd-mips64 and openbsd-ppc64 broken The former was broken deliberately; see #58110. The latter is just an in-progress port. Updates #58110, #56001. Change-Id: I7f1c5e2ac016fb7c65c081174d19239fc9b1ea32 Reviewed-on: https://go-review.googlesource.com/c/go/+/482115 Auto-Submit: Heschi Kreinick TryBot-Bypass: Heschi Kreinick Run-TryBot: Heschi Kreinick Reviewed-by: Ian Lance Taylor --- diff --git a/src/cmd/dist/build.go b/src/cmd/dist/build.go index 344d4bfa6d..565c93b75f 100644 --- a/src/cmd/dist/build.go +++ b/src/cmd/dist/build.go @@ -1730,8 +1730,10 @@ var cgoEnabled = map[string]bool{ // get filtered out of cgoEnabled for 'dist list'. // See go.dev/issue/56679. var broken = map[string]bool{ - "linux/sparc64": true, // An incomplete port. See CL 132155. - "wasip1/wasm": true, // An incomplete port. See CL 479627. + "linux/sparc64": true, // An incomplete port. See CL 132155. + "wasip1/wasm": true, // An incomplete port. See CL 479627. + "openbsd/ppc64": true, // An incomplete port: go.dev/issue/56001. + "openbsd/mips64": true, // Broken: go.dev/issue/58110. } // List of platforms which are first class ports. See go.dev/issue/38874.