Commit 09ec5230 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

Revert "cmd/dist: support windows/arm"

This reverts commit def3280e.

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/130015Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent a034f310
...@@ -1422,7 +1422,6 @@ var cgoEnabled = map[string]bool{ ...@@ -1422,7 +1422,6 @@ var cgoEnabled = map[string]bool{
"solaris/amd64": true, "solaris/amd64": true,
"windows/386": true, "windows/386": true,
"windows/amd64": true, "windows/amd64": true,
"windows/arm": false,
} }
func needCC() bool { func needCC() bool {
......
...@@ -32,7 +32,6 @@ type systeminfo struct { ...@@ -32,7 +32,6 @@ type systeminfo struct {
const ( const (
PROCESSOR_ARCHITECTURE_AMD64 = 9 PROCESSOR_ARCHITECTURE_AMD64 = 9
PROCESSOR_ARCHITECTURE_INTEL = 0 PROCESSOR_ARCHITECTURE_INTEL = 0
PROCESSOR_ARCHITECTURE_ARM = 5
) )
var sysinfo systeminfo var sysinfo systeminfo
...@@ -44,8 +43,6 @@ func sysinit() { ...@@ -44,8 +43,6 @@ func sysinit() {
gohostarch = "amd64" gohostarch = "amd64"
case PROCESSOR_ARCHITECTURE_INTEL: case PROCESSOR_ARCHITECTURE_INTEL:
gohostarch = "386" gohostarch = "386"
case PROCESSOR_ARCHITECTURE_ARM:
gohostarch = "arm"
default: default:
fatalf("unknown processor architecture") fatalf("unknown processor architecture")
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment