Skip to content

Commit

Permalink
cmd/dist,internal/platform: add openbsd/riscv64 port
Browse files Browse the repository at this point in the history
Updates #55999

Change-Id: I3c07f776919e36e4c1fdc5346f7622e5901a2902
Reviewed-on: https://go-review.googlesource.com/c/go/+/518624
TryBot-Result: Gopher Robot <[email protected]>
Reviewed-by: Keith Randall <[email protected]>
Reviewed-by: Aaron Bieber <[email protected]>
Reviewed-by: Keith Randall <[email protected]>
Reviewed-by: Than McIntosh <[email protected]>
Run-TryBot: Joel Sing <[email protected]>
  • Loading branch information
4a6f656c committed Oct 2, 2023
1 parent a36070c commit 0362f5b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/cmd/dist/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -1729,6 +1729,7 @@ var cgoEnabled = map[string]bool{
"openbsd/arm64": true,
"openbsd/mips64": true,
"openbsd/ppc64": false,
"openbsd/riscv64": false,
"plan9/386": false,
"plan9/amd64": false,
"plan9/arm": false,
Expand All @@ -1744,9 +1745,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.
"openbsd/ppc64": true, // An incomplete port: go.dev/issue/56001.
"openbsd/mips64": true, // Broken: go.dev/issue/58110.
"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.
}

// List of platforms which are first class ports. See go.dev/issue/38874.
Expand Down
2 changes: 2 additions & 0 deletions src/internal/platform/zosarch.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0362f5b

Please sign in to comment.