HomeSort by relevance Sort by last modified time
    Searched refs:GOBIN (Results 1 - 25 of 43) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/
clean.rc 13 $GOBIN/go clean -i std
14 $GOBIN/go tool dist clean
15 $GOBIN/go clean -i cmd
run.rc 12 GOBIN = () # Issue 14340
clean.bat 21 "%GOBIN%\go" clean -i std
22 "%GOBIN%\go" tool dist clean
23 "%GOBIN%\go" clean -i cmd
run.bash 22 unset GOBIN # Issue 14340
iostest.bash 53 unset GOBIN
run.bat 18 :: Issue 14340: ignore GOBIN during all.bat.
19 set GOBIN=
make.bash 65 unset GOBIN # Issue 14340
androidtest.bash 39 unset GOBIN
  /prebuilts/go/linux-x86/src/
clean.rc 13 $GOBIN/go clean -i std
14 $GOBIN/go tool dist clean
15 $GOBIN/go clean -i cmd
run.rc 12 GOBIN = () # Issue 14340
clean.bat 21 "%GOBIN%\go" clean -i std
22 "%GOBIN%\go" tool dist clean
23 "%GOBIN%\go" clean -i cmd
run.bash 22 unset GOBIN # Issue 14340
iostest.bash 53 unset GOBIN
run.bat 18 :: Issue 14340: ignore GOBIN during all.bat.
19 set GOBIN=
make.bash 65 unset GOBIN # Issue 14340
androidtest.bash 39 unset GOBIN
  /external/boringssl/src/util/bot/go/
bootstrap.py 210 Overrides GOROOT, GOPATH and GOBIN. Keeps everything else. Idempotent.
219 env['GOBIN'] = os.path.join(workspace, 'bin')
221 env.pop('GOBIN', None)
231 env.get('GOBIN'),
271 """Returns full path to an executable in some bin/ (in GOROOT or GOBIN)."""
  /prebuilts/go/darwin-x86/src/cmd/dist/
buildtool.go 156 // GOBIN is empty, so that binaries are installed to GOPATH/bin,
159 // Restore GOROOT, GOPATH, and GOBIN when done.
169 defer os.Setenv("GOBIN", os.Getenv("GOBIN"))
170 os.Setenv("GOBIN", "")
  /prebuilts/go/linux-x86/src/cmd/dist/
buildtool.go 156 // GOBIN is empty, so that binaries are installed to GOPATH/bin,
159 // Restore GOROOT, GOPATH, and GOBIN when done.
169 defer os.Setenv("GOBIN", os.Getenv("GOBIN"))
170 os.Setenv("GOBIN", "")
  /prebuilts/go/darwin-x86/src/cmd/go/internal/cfg/
cfg.go 80 GOBIN = os.Getenv("GOBIN")
  /prebuilts/go/linux-x86/src/cmd/go/internal/cfg/
cfg.go 80 GOBIN = os.Getenv("GOBIN")
  /prebuilts/go/darwin-x86/src/cmd/go/internal/fmtcmd/
fmt.go 87 gofmtPath := filepath.Join(cfg.GOBIN, gofmt)
  /prebuilts/go/linux-x86/src/cmd/go/internal/fmtcmd/
fmt.go 87 gofmtPath := filepath.Join(cfg.GOBIN, gofmt)
  /prebuilts/go/darwin-x86/src/cmd/go/internal/work/
build.go 417 if cfg.GOBIN != "" && !filepath.IsAbs(cfg.GOBIN) {
418 base.Fatalf("cannot install, GOBIN must be an absolute path")
427 base.Errorf("go %s: cannot install cross-compiled binaries when GOBIN is set", cfg.CmdName)
429 base.Errorf("go %s: no install location for .go files listed on command line (GOBIN not set)", cfg.CmdName)
499 if filepath.Join(pkgs[0].Dir, targ) != pkgs[0].Target { // maybe $GOBIN is the current directory
  /prebuilts/go/linux-x86/src/cmd/go/internal/work/
build.go 417 if cfg.GOBIN != "" && !filepath.IsAbs(cfg.GOBIN) {
418 base.Fatalf("cannot install, GOBIN must be an absolute path")
427 base.Errorf("go %s: cannot install cross-compiled binaries when GOBIN is set", cfg.CmdName)
429 base.Errorf("go %s: no install location for .go files listed on command line (GOBIN not set)", cfg.CmdName)
499 if filepath.Join(pkgs[0].Dir, targ) != pkgs[0].Target { // maybe $GOBIN is the current directory

Completed in 1758 milliseconds

1 2