]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/dist, internal/platform: mark windows/arm (32-bit ARM) broken
authorDmitri Shuralyov <dmitshur@golang.org>
Tue, 30 Jul 2024 16:11:23 +0000 (12:11 -0400)
committerGopher Robot <gobot@golang.org>
Wed, 14 Aug 2024 20:56:33 +0000 (20:56 +0000)
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>

src/cmd/dist/build.go
src/internal/platform/zosarch.go

index 910d5290e592d9dba84d1d7b07e22782149a377e..79edf8053a7b09fa8114ee08bcebb894335ad183 100644 (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.
index 1df348518cc9b9f2a2453a57ff074821af124615..ebde978a230f74e52a0921621bae8dcf0e60f0c0 100644 (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},
 }