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

api: add FreeBSD to go1 API

Now that gri has made go/parser 15% faster, I offer this
change to slow back down cmd/api ~proportionately, adding
FreeBSD to the go1-checked set of platforms.

Really we should have done this earlier. This will prevent us
from breaking FreeBSD compatibility accidentally in the
future.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/6279044
This commit is contained in:
Brad Fitzpatrick 2012-06-01 18:42:36 -07:00
parent 0e45890c8b
commit b7c2ade696
2 changed files with 4064 additions and 7 deletions

File diff suppressed because it is too large Load Diff

View File

@ -57,6 +57,8 @@ var contexts = []*build.Context{
{GOOS: "darwin", GOARCH: "amd64"},
{GOOS: "windows", GOARCH: "amd64"},
{GOOS: "windows", GOARCH: "386"},
{GOOS: "freebsd", GOARCH: "amd64"},
{GOOS: "freebsd", GOARCH: "386"},
}
func contextName(c *build.Context) string {