Skip to content

Commit d0099ef

Browse files
heschigopherbot
authored andcommitted
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 <[email protected]> TryBot-Bypass: Heschi Kreinick <[email protected]> Run-TryBot: Heschi Kreinick <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent ecc5ba4 commit d0099ef

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/cmd/dist/build.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1730,8 +1730,10 @@ var cgoEnabled = map[string]bool{
17301730
// get filtered out of cgoEnabled for 'dist list'.
17311731
// See go.dev/issue/56679.
17321732
var broken = map[string]bool{
1733-
"linux/sparc64": true, // An incomplete port. See CL 132155.
1734-
"wasip1/wasm": true, // An incomplete port. See CL 479627.
1733+
"linux/sparc64": true, // An incomplete port. See CL 132155.
1734+
"wasip1/wasm": true, // An incomplete port. See CL 479627.
1735+
"openbsd/ppc64": true, // An incomplete port: go.dev/issue/56001.
1736+
"openbsd/mips64": true, // Broken: go.dev/issue/58110.
17351737
}
17361738

17371739
// List of platforms which are first class ports. See go.dev/issue/38874.

0 commit comments

Comments
 (0)