go/build.Context.GOARCH (field)

8 uses

	go/build (current package)
		build.go#L38: 	GOARCH string // target architecture
		build.go#L336: 	c.GOARCH = buildcfg.GOARCH
		build.go#L371: 		if runtime.GOARCH == c.GOARCH && runtime.GOOS == c.GOOS {
		build.go#L372: 			c.CgoEnabled = platform.CgoSupported(c.GOOS, c.GOARCH)
		build.go#L593: 		pkgtargetroot = "pkg/gccgo_" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
		build.go#L595: 		pkgtargetroot = "pkg/" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
		build.go#L1250: 		"GOARCH="+ctxt.GOARCH,
		build.go#L1968: 	if name == ctxt.GOOS || name == ctxt.GOARCH || name == ctxt.Compiler {