go.tools/dashboard/builder: respect CGO_ENABLED value from the environment

Allow builder owners to set CGO_ENABLED to override the logic in cmd/go

LGTM=minux.ma, adg
R=golang-codereviews, minux.ma, adg
CC=golang-codereviews
https://golang.org/cl/63570046
This commit is contained in:
Dave Cheney 2014-02-16 20:43:00 +11:00
Родитель fa5c998c67
Коммит 1e2cdc28f8
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -20,6 +20,7 @@ import (
// to the envv of its subprocesses.
var extraEnv = []string{
"GOARM",
"CGO_ENABLED",
// For Unix derivatives.
"CC",