From b7c2ade6964139b99d35f8f4d10d061e4443985f Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 1 Jun 2012 18:42:36 -0700 Subject: 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 --- src/cmd/api/goapi.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/cmd/api') diff --git a/src/cmd/api/goapi.go b/src/cmd/api/goapi.go index b10a51c510..a84102fdd1 100644 --- a/src/cmd/api/goapi.go +++ b/src/cmd/api/goapi.go @@ -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 { -- cgit v1.3-5-g9baa