HomeSort by relevance Sort by last modified time
    Searched refs:GOBIN (Results 26 - 39 of 39) sorted by null

12

  /prebuilts/go/darwin-x86/src/cmd/go/
go_test.go 108 os.Unsetenv("GOBIN")
180 if strings.HasPrefix(e, "GOROOT=") || strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "GOBIN=") {
227 if tg.inParallel && (name == "GOROOT" || name == "GOPATH" || name == "GOBIN") && (strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata")) {
920 tg.setenv("GOBIN", tg.path("."))
    [all...]
help.go 320 installed commands. If the GOBIN environment variable is
322 of DIR/bin. GOBIN must be an absolute path.
449 GOBIN
build.go 609 if gobin != "" && !filepath.IsAbs(gobin) {
610 fatalf("cannot install, GOBIN must be an absolute path")
621 errorf("go install: cannot install cross-compiled binaries when GOBIN is set")
623 errorf("go install: no install location for .go files listed on command line (GOBIN not set)")
686 if filepath.Join(pkgs[0].Dir, targ) != pkgs[0].Target { // maybe $GOBIN is the current directory
781 gobin = os.Getenv("GOBIN")
880 if gobin != "" {
881 pkg.target = filepath.Join(gobin, exe
780 gobin = os.Getenv("GOBIN") var
    [all...]
alldocs.go     [all...]
pkg.go 106 gobinSubdir bool // install target would be subdir of GOBIN
368 if gobin != "" {
369 bp.BinDir = gobin
869 // Install to GOBIN or bin of GOPATH entry.
871 if !p.Goroot && strings.Contains(elem, "/") && gobin != "" {
872 // Do not create $GOBIN/goos_goarch/elem.
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
go_test.go 108 os.Unsetenv("GOBIN")
180 if strings.HasPrefix(e, "GOROOT=") || strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "GOBIN=") {
227 if tg.inParallel && (name == "GOROOT" || name == "GOPATH" || name == "GOBIN") && (strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata")) {
920 tg.setenv("GOBIN", tg.path("."))
    [all...]
help.go 320 installed commands. If the GOBIN environment variable is
322 of DIR/bin. GOBIN must be an absolute path.
449 GOBIN
build.go 609 if gobin != "" && !filepath.IsAbs(gobin) {
610 fatalf("cannot install, GOBIN must be an absolute path")
621 errorf("go install: cannot install cross-compiled binaries when GOBIN is set")
623 errorf("go install: no install location for .go files listed on command line (GOBIN not set)")
686 if filepath.Join(pkgs[0].Dir, targ) != pkgs[0].Target { // maybe $GOBIN is the current directory
781 gobin = os.Getenv("GOBIN")
880 if gobin != "" {
881 pkg.target = filepath.Join(gobin, exe
780 gobin = os.Getenv("GOBIN") var
    [all...]
alldocs.go     [all...]
pkg.go 106 gobinSubdir bool // install target would be subdir of GOBIN
368 if gobin != "" {
369 bp.BinDir = gobin
869 // Install to GOBIN or bin of GOPATH entry.
871 if !p.Goroot && strings.Contains(elem, "/") && gobin != "" {
872 // Do not create $GOBIN/goos_goarch/elem.
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/dist/
build.go 25 gobin string
110 b := os.Getenv("GOBIN")
114 gobin = b
354 // The old tools that no longer live in $GOBIN or $GOROOT/bin.
442 // If $GOBIN is set and has a Go compiler, it must be cleaned.
444 if isfile(pathf("%s%s%c%s", gobin, slash, char, "g")) {
446 xremove(pathf("%s/%s", gobin, old))
986 xprintf(format, "GOBIN", gobin)
1004 xprintf(format, "PATH", fmt.Sprintf("%s%s%s", gobin, sep, os.Getenv("PATH"))
24 gobin string var
    [all...]
  /prebuilts/go/linux-x86/src/cmd/dist/
build.go 25 gobin string
110 b := os.Getenv("GOBIN")
114 gobin = b
354 // The old tools that no longer live in $GOBIN or $GOROOT/bin.
442 // If $GOBIN is set and has a Go compiler, it must be cleaned.
444 if isfile(pathf("%s%s%c%s", gobin, slash, char, "g")) {
446 xremove(pathf("%s/%s", gobin, old))
986 xprintf(format, "GOBIN", gobin)
1004 xprintf(format, "PATH", fmt.Sprintf("%s%s%s", gobin, sep, os.Getenv("PATH"))
24 gobin string var
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testshared/
shared_test.go 166 // That won't work if GOBIN is set.
167 os.Unsetenv("GOBIN")
  /prebuilts/go/linux-x86/misc/cgo/testshared/
shared_test.go 166 // That won't work if GOBIN is set.
167 os.Unsetenv("GOBIN")

Completed in 244 milliseconds

12