mirror of
https://github.com/golang/go.git
synced 2025-10-19 11:03:18 +00:00
cmd/dist, internal/platform: mark freebsd/riscv64 broken
It seems we have a builder, but it is not running correctly. Until then, we should mark this port broken. For #74734 For #74735 Change-Id: I536d037a43499cbd033fb6ebdf004a3df76332ab Reviewed-on: https://go-review.googlesource.com/c/go/+/691835 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
This commit is contained in:
parent
55d961b202
commit
b0945a54b5
2 changed files with 5 additions and 4 deletions
7
src/cmd/dist/build.go
vendored
7
src/cmd/dist/build.go
vendored
|
@ -1828,9 +1828,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/mips64": true, // Broken: go.dev/issue/58110.
|
||||
"windows/arm": true, // Broken: go.dev/issue/68552.
|
||||
"freebsd/riscv64": true, // Broken: go.dev/issue/73568.
|
||||
"linux/sparc64": true, // An incomplete port. See CL 132155.
|
||||
"openbsd/mips64": true, // Broken: go.dev/issue/58110.
|
||||
"windows/arm": true, // Broken: go.dev/issue/68552.
|
||||
}
|
||||
|
||||
// List of platforms which are first class ports. See go.dev/issue/38874.
|
||||
|
|
|
@ -74,7 +74,7 @@ var distInfo = map[OSArch]osArchInfo{
|
|||
{"freebsd", "amd64"}: {CgoSupported: true},
|
||||
{"freebsd", "arm"}: {CgoSupported: true},
|
||||
{"freebsd", "arm64"}: {CgoSupported: true},
|
||||
{"freebsd", "riscv64"}: {CgoSupported: true},
|
||||
{"freebsd", "riscv64"}: {CgoSupported: true, Broken: true},
|
||||
{"illumos", "amd64"}: {CgoSupported: true},
|
||||
{"ios", "amd64"}: {CgoSupported: true},
|
||||
{"ios", "arm64"}: {CgoSupported: true},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue