1
0
mirror of https://github.com/golang/go synced 2024-10-01 03:08:33 -06:00

go.tools/dashboard: Turn off multilib compilation in gccgo.

R=adg
CC=golang-dev
https://golang.org/cl/43020043
This commit is contained in:
Chris Manghane 2013-12-16 14:50:22 -08:00
parent 2cbda9de61
commit 9e3292f107

View File

@ -190,7 +190,12 @@ func (env *gccgoEnv) setup(repo *Repo, workpath, hash string, envv []string) (st
}
// configure GCC with substituted gofrontend and libgo
gccConfigCmd := []string{filepath.Join(gccpath, "configure"), "--enable-languages=c,c++,go", "--disable-bootstrap"}
gccConfigCmd := []string{
filepath.Join(gccpath, "configure"),
"--enable-languages=c,c++,go",
"--disable-bootstrap",
"--disable-multilib",
}
if _, err := runOutput(*cmdTimeout, envv, ioutil.Discard, gccobjdir, gccConfigCmd...); err != nil {
return "", fmt.Errorf("Failed to configure GCC: %s", err)
}