mirror of https://github.com/golang/go.git
misc/dashboard/builder: add environment variables for Plan 9
We require $objtype in make.rc and rc needs $path for finding commands. Also include $cputype which we may use in the future. R=golang-dev, minux.ma, r CC=golang-dev https://golang.org/cl/9905043
This commit is contained in:
parent
84485361f9
commit
252161cadc
|
|
@ -31,11 +31,18 @@ const (
|
||||||
// These variables are copied from the gobuilder's environment
|
// These variables are copied from the gobuilder's environment
|
||||||
// to the envv of its subprocesses.
|
// to the envv of its subprocesses.
|
||||||
var extraEnv = []string{
|
var extraEnv = []string{
|
||||||
"CC",
|
|
||||||
"GOARM",
|
"GOARM",
|
||||||
|
|
||||||
|
// For Unix derivatives.
|
||||||
|
"CC",
|
||||||
"PATH",
|
"PATH",
|
||||||
"TMPDIR",
|
"TMPDIR",
|
||||||
"USER",
|
"USER",
|
||||||
|
|
||||||
|
// For Plan 9.
|
||||||
|
"objtype",
|
||||||
|
"cputype",
|
||||||
|
"path",
|
||||||
}
|
}
|
||||||
|
|
||||||
type Builder struct {
|
type Builder struct {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue