]> Cypherpunks.ru repositories - gostls13.git/commitdiff
cmd/dist,internal/platform: enable openbsd/ppc64 port
authorJoel Sing <joel@sing.id.au>
Wed, 9 Aug 2023 17:32:21 +0000 (03:32 +1000)
committerJoel Sing <joel@sing.id.au>
Tue, 31 Oct 2023 12:43:19 +0000 (12:43 +0000)
Updates #56001

Change-Id: I16440114ecf661e9fc17d304ab3b16bc97ef82f8
Reviewed-on: https://go-review.googlesource.com/c/go/+/517935
Run-TryBot: Joel Sing <joel@sing.id.au>
Reviewed-by: Paul Murphy <murp@ibm.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Carlos Amedee <carlos@golang.org>
src/cmd/dist/build.go
src/internal/platform/zosarch.go

index 0c6a382b82fbce463ff282e65dd0eea4e581de3d..32e59b446a5d9be5be970271cb3e9b7a0c59304f 100644 (file)
@@ -1747,7 +1747,6 @@ var cgoEnabled = map[string]bool{
 var broken = map[string]bool{
        "linux/sparc64":   true, // An incomplete port. See CL 132155.
        "openbsd/mips64":  true, // Broken: go.dev/issue/58110.
-       "openbsd/ppc64":   true, // An incomplete port: go.dev/issue/56001.
        "openbsd/riscv64": true, // An incomplete port: go.dev/issue/55999.
 }
 
index 4be5c58227a137f4eaef0c9fcb50e70c5dbd03a4..7c3db537e8a8878083116a57f1ab3021d06fe4a0 100644 (file)
@@ -102,7 +102,7 @@ var distInfo = map[OSArch]osArchInfo{
        {"openbsd", "arm"}:     {CgoSupported: true},
        {"openbsd", "arm64"}:   {CgoSupported: true},
        {"openbsd", "mips64"}:  {CgoSupported: true, Broken: true},
-       {"openbsd", "ppc64"}:   {Broken: true},
+       {"openbsd", "ppc64"}:   {},
        {"openbsd", "riscv64"}: {Broken: true},
        {"plan9", "386"}:       {},
        {"plan9", "amd64"}:     {},