HomeSort by relevance Sort by last modified time
    Searched refs:GOOS (Results 301 - 325 of 331) sorted by null

<<11121314

  /prebuilts/go/linux-x86/src/cmd/go/
build.go 143 if buildContext.GOOS == "darwin" {
328 platform := goos + "/" + goarch
579 if m&0111 != 0 || goos == "windows" { // windows never sets executable bit
591 goos string
597 goos = buildContext.GOOS
598 if goos == "windows" {
861 if goos == runtime.GOOS && goarch == runtime.GOARCH && !buildRace {
939 } else if goos == "darwin" && buildBuildmode == "c-shared" && p.target != ""
590 goos string var
    [all...]
alldocs.go 382 $GOOS
586 GOOS string // target operating system
630 If the -exec flag is not given, GOOS or GOARCH is different from the system
    [all...]
main.go 160 // Set environment (GOOS, GOARCH, etc) explicitly.
pkg.go 762 full := buildContext.GOOS + "_" + buildContext.GOARCH + "/" + elem
763 if buildContext.GOOS != toolGOOS || buildContext.GOARCH != toolGOARCH {
786 if p.target != "" && buildContext.GOOS == "windows" {
    [all...]
test.go 399 if goos == runtime.GOOS && goarch == runtime.GOARCH && !buildRace {
808 if buildContext.GOOS == "darwin" {
847 if goos == "windows" {
    [all...]
help.go 442 GOOS
  /prebuilts/go/darwin-x86/src/cmd/go/
alldocs.go 382 $GOOS
586 GOOS string // target operating system
630 If the -exec flag is not given, GOOS or GOARCH is different from the system
    [all...]
main.go 160 // Set environment (GOOS, GOARCH, etc) explicitly.
pkg.go 762 full := buildContext.GOOS + "_" + buildContext.GOARCH + "/" + elem
763 if buildContext.GOOS != toolGOOS || buildContext.GOARCH != toolGOARCH {
786 if p.target != "" && buildContext.GOOS == "windows" {
    [all...]
test.go 399 if goos == runtime.GOOS && goarch == runtime.GOARCH && !buildRace {
808 if buildContext.GOOS == "darwin" {
847 if goos == "windows" {
    [all...]
help.go 442 GOOS
  /prebuilts/go/darwin-x86/src/go/scanner/
scanner_test.go 518 if runtime.GOOS == "windows" {
  /prebuilts/go/darwin-x86/src/os/exec/
exec.go 297 if runtime.GOOS == "windows" {
  /prebuilts/go/linux-x86/src/go/scanner/
scanner_test.go 518 if runtime.GOOS == "windows" {
  /prebuilts/go/linux-x86/src/os/exec/
exec.go 297 if runtime.GOOS == "windows" {
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
lib.go 264 goos string
291 goos := obj.Getgoos()
294 return fmt.Errorf("buildmode %s not supported on %s/%s", s, goos, goarch)
302 switch goos {
314 if goos != "linux" || goarch != "amd64" {
353 mywhatsys() // get goroot, goarch, goos
367 Lflag(fmt.Sprintf("%s/pkg/%s_%s%s%s", goroot, goos, goarch, suffixsep, suffix))
381 INITENTRY = fmt.Sprintf("_rt0_%s_%s_lib", goarch, goos)
383 INITENTRY = fmt.Sprintf("_rt0_%s_%s", goarch, goos)
497 if goos == "android"
263 goos string var
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
lib.go 261 goos string
288 goos := obj.Getgoos()
291 return fmt.Errorf("buildmode %s not supported on %s/%s", s, goos, goarch)
299 switch goos {
311 if goos != "linux" || goarch != "amd64" {
350 mywhatsys() // get goroot, goarch, goos
364 Lflag(fmt.Sprintf("%s/pkg/%s_%s%s%s", goroot, goos, goarch, suffixsep, suffix))
378 INITENTRY = fmt.Sprintf("_rt0_%s_%s_lib", goarch, goos)
380 INITENTRY = fmt.Sprintf("_rt0_%s_%s", goarch, goos)
494 if goos == "android"
260 goos string var
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
lib.go 264 goos string
291 goos := obj.Getgoos()
294 return fmt.Errorf("buildmode %s not supported on %s/%s", s, goos, goarch)
302 switch goos {
314 if goos != "linux" || goarch != "amd64" {
353 mywhatsys() // get goroot, goarch, goos
367 Lflag(fmt.Sprintf("%s/pkg/%s_%s%s%s", goroot, goos, goarch, suffixsep, suffix))
381 INITENTRY = fmt.Sprintf("_rt0_%s_%s_lib", goarch, goos)
383 INITENTRY = fmt.Sprintf("_rt0_%s_%s", goarch, goos)
497 if goos == "android"
263 goos string var
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
lib.go 261 goos string
288 goos := obj.Getgoos()
291 return fmt.Errorf("buildmode %s not supported on %s/%s", s, goos, goarch)
299 switch goos {
311 if goos != "linux" || goarch != "amd64" {
350 mywhatsys() // get goroot, goarch, goos
364 Lflag(fmt.Sprintf("%s/pkg/%s_%s%s%s", goroot, goos, goarch, suffixsep, suffix))
378 INITENTRY = fmt.Sprintf("_rt0_%s_%s_lib", goarch, goos)
380 INITENTRY = fmt.Sprintf("_rt0_%s_%s", goarch, goos)
494 if goos == "android"
260 goos string var
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
serve_test.go 450 if runtime.GOOS == "plan9" {
529 if runtime.GOOS == "plan9" {
884 if runtime.GOOS == "plan9" {
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
malloc.go 270 case GOARCH == "arm64" && GOOS == "darwin":
proc1.go 878 if iscgo || GOOS == "solaris" || GOOS == "windows" || GOOS == "plan9" {
    [all...]
  /prebuilts/go/darwin-x86/src/testing/
testing.go 675 if runtime.GOOS == "windows" {
  /prebuilts/go/linux-x86/src/net/http/
serve_test.go 450 if runtime.GOOS == "plan9" {
529 if runtime.GOOS == "plan9" {
884 if runtime.GOOS == "plan9" {
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
malloc.go 270 case GOARCH == "arm64" && GOOS == "darwin":

Completed in 1147 milliseconds

<<11121314