HomeSort by relevance Sort by last modified time
    Searched refs:gobin (Results 1 - 16 of 16) sorted by null

  /prebuilts/go/darwin-x86/src/
clean.bash 14 gobin="${GOBIN:-../bin}"
15 if ! "$gobin"/go help >/dev/null 2>&1; then
20 "$gobin/go" clean -i std
21 "$gobin/go" tool dist clean
22 "$gobin/go" clean -i cmd
naclmake.bash 44 gobin=$GOROOT_BOOTSTRAP/bin
45 GOROOT=$GOROOT_BOOTSTRAP $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto syscall/fstest_nacl.go
  /prebuilts/go/linux-x86/src/
clean.bash 14 gobin="${GOBIN:-../bin}"
15 if ! "$gobin"/go help >/dev/null 2>&1; then
20 "$gobin/go" clean -i std
21 "$gobin/go" tool dist clean
22 "$gobin/go" clean -i cmd
naclmake.bash 44 gobin=$GOROOT_BOOTSTRAP/bin
45 GOROOT=$GOROOT_BOOTSTRAP $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto syscall/fstest_nacl.go
  /prebuilts/go/darwin-x86/src/cmd/go/
fmt.go 52 gofmtPath := filepath.Join(gobin, gofmt)
env.go 38 {"GOBIN", gobin},
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...]
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...]
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...]
  /prebuilts/go/linux-x86/src/cmd/go/
fmt.go 52 gofmtPath := filepath.Join(gobin, gofmt)
env.go 38 {"GOBIN", gobin},
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...]
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...]
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...]
  /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...]

Completed in 386 milliseconds