1
0
mirror of https://github.com/golang/go synced 2024-09-25 11:10:13 -06:00

Revert "cmd/dist: support windows/arm"

This reverts commit def3280eb4.

Reason for revert: broke the vetall builder and I (Brad) forgot to run the trybots first. :(

Change-Id: I255bedeb28d13e265f357060e57561e593145275
Reviewed-on: https://go-review.googlesource.com/130015
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Brad Fitzpatrick 2018-08-20 19:11:33 +00:00
parent a034f310b0
commit 09ec523049
2 changed files with 0 additions and 4 deletions

View File

@ -1422,7 +1422,6 @@ var cgoEnabled = map[string]bool{
"solaris/amd64": true,
"windows/386": true,
"windows/amd64": true,
"windows/arm": false,
}
func needCC() bool {

View File

@ -32,7 +32,6 @@ type systeminfo struct {
const (
PROCESSOR_ARCHITECTURE_AMD64 = 9
PROCESSOR_ARCHITECTURE_INTEL = 0
PROCESSOR_ARCHITECTURE_ARM = 5
)
var sysinfo systeminfo
@ -44,8 +43,6 @@ func sysinit() {
gohostarch = "amd64"
case PROCESSOR_ARCHITECTURE_INTEL:
gohostarch = "386"
case PROCESSOR_ARCHITECTURE_ARM:
gohostarch = "arm"
default:
fatalf("unknown processor architecture")
}