1
0
mirror of https://github.com/golang/go synced 2024-09-29 17:14:29 -06:00

cmd/dist,internal/platform: enable openbsd/riscv64 port

Fixes #55999

Change-Id: If76b61b660db3fefe5f9ca97500782f2a650db25
Reviewed-on: https://go-review.googlesource.com/c/go/+/518629
Reviewed-by: Cherry Mui <cherryyz@google.com>
Run-TryBot: Joel Sing <joel@sing.id.au>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Carlos Amedee <carlos@golang.org>
This commit is contained in:
Joel Sing 2023-08-04 20:40:23 +10:00
parent cad6629144
commit fee3f537b4
2 changed files with 1 additions and 2 deletions

View File

@ -1762,7 +1762,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/riscv64": true, // An incomplete port: go.dev/issue/55999.
}
// List of platforms which are first class ports. See go.dev/issue/38874.

View File

@ -103,7 +103,7 @@ var distInfo = map[OSArch]osArchInfo{
{"openbsd", "arm64"}: {CgoSupported: true},
{"openbsd", "mips64"}: {CgoSupported: true, Broken: true},
{"openbsd", "ppc64"}: {},
{"openbsd", "riscv64"}: {Broken: true},
{"openbsd", "riscv64"}: {},
{"plan9", "386"}: {},
{"plan9", "amd64"}: {},
{"plan9", "arm"}: {},