go/build.Context.GOOS (field)

11 uses

	go/build (current package)
		build.go#L36: 	GOOS   string // target operating system
		build.go#L304: 	c.GOOS = buildcfg.GOOS
		build.go#L343: 		if runtime.GOARCH == c.GOARCH && runtime.GOOS == c.GOOS {
		build.go#L344: 			c.CgoEnabled = cgoEnabled[c.GOOS+"/"+c.GOARCH]
		build.go#L553: 		pkgtargetroot = "pkg/gccgo_" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
		build.go#L555: 		pkgtargetroot = "pkg/" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
		build.go#L1183: 		"GOOS="+ctxt.GOOS,
		build.go#L1890: 	if name == ctxt.GOOS || name == ctxt.GOARCH || name == ctxt.Compiler {
		build.go#L1893: 	if ctxt.GOOS == "android" && name == "linux" {
		build.go#L1896: 	if ctxt.GOOS == "illumos" && name == "solaris" {
		build.go#L1899: 	if ctxt.GOOS == "ios" && name == "darwin" {