1
0
mirror of https://github.com/golang/go synced 2024-11-11 23:20:24 -07:00

misc/dist: label 386 and amd64 as "32-bit x86" and "64-bit x86"

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5986043
This commit is contained in:
Andrew Gerrand 2012-04-05 11:16:37 +10:00
parent 35bc9d17df
commit 0f775d6b76

View File

@ -394,9 +394,9 @@ func (b *Build) Upload(version string, filename string) error {
os_, arch := b.OS, b.Arch
switch b.Arch {
case "386":
arch = "32-bit"
arch = "x86 32-bit"
case "amd64":
arch = "64-bit"
arch = "x86 64-bit"
}
if arch != "" {
labels = append(labels, "Arch-"+b.Arch)