1
0
mirror of https://github.com/golang/go synced 2024-11-22 05:14:40 -07:00

cmd/dist, internal/platform: mark windows/arm (32-bit ARM) broken

The port is reportedly broken, and there isn't a builder testing it.

For #68552.
For #67308.

Change-Id: Iababa17cdf855b675aaf85642a667e8081ef5dfe
Reviewed-on: https://go-review.googlesource.com/c/go/+/601777
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
This commit is contained in:
Dmitri Shuralyov 2024-07-30 12:11:23 -04:00 committed by Gopher Robot
parent 866e260f92
commit 370a6959e3
2 changed files with 2 additions and 1 deletions

View File

@ -1785,6 +1785,7 @@ 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.
"windows/arm": true, // Broken: go.dev/issue/68552.
}
// List of platforms which are first class ports. See go.dev/issue/38874.

View File

@ -111,6 +111,6 @@ var distInfo = map[OSArch]osArchInfo{
{"wasip1", "wasm"}: {},
{"windows", "386"}: {CgoSupported: true, FirstClass: true},
{"windows", "amd64"}: {CgoSupported: true, FirstClass: true},
{"windows", "arm"}: {},
{"windows", "arm"}: {Broken: true},
{"windows", "arm64"}: {CgoSupported: true},
}