HomeSort by relevance Sort by last modified time
    Searched full:goroot (Results 101 - 125 of 315) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/go/
tool.go 107 // Set $GOROOT, mainly for go tool dist.
108 Env: mergeEnvLists([]string{"GOROOT=" + goroot}, os.Environ()),
doc.go 30 on what is installed in GOROOT and GOPATH, as well as the form of the argument,
39 scanning is determined lexically, but the GOROOT tree is always scanned before
main.go 134 // Diagnose common mistake: GOPATH==GOROOT.
137 if gopath := os.Getenv("GOPATH"); gopath == runtime.GOROOT() {
138 fmt.Fprintf(os.Stderr, "warning: GOPATH set to GOROOT (%s) has no effect\n", gopath)
155 if fi, err := os.Stat(goroot); err != nil || !fi.IsDir() {
156 fmt.Fprintf(os.Stderr, "go: cannot find GOROOT directory: %v\n", goroot)
543 // under the $GOPATH directories and $GOROOT matching pattern.
660 // "cd $GOROOT/src; go list ./io/..." would incorrectly skip the io
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
sym.go 84 ctxt.Goroot = Getgoroot()
99 ctxt.LineHist.GOROOT = ctxt.Goroot
  /prebuilts/go/darwin-x86/src/
make.bat 54 :: Set GOROOT for build.
56 set GOROOT=%CD%
65 set GOROOT=%GOROOT_BOOTSTRAP%
make.bash 52 echo 'make.bash must be run from $GOROOT/src' 1>&2
114 export GOROOT="$(cd .. && pwd)"
121 GOROOT="$GOROOT_BOOTSTRAP" GOOS="" GOARCH="" "$GOROOT_BOOTSTRAP/bin/go" build -o cmd/dist/dist ./cmd/dist
  /prebuilts/go/linux-x86/misc/nacl/
README 61 % ln -nfs $GOROOT/misc/nacl/go_nacl_amd64p32_exec $GOPATH/bin/go_nacl_amd64p32_exec
62 % ln -nfs $GOROOT/misc/nacl/go_nacl_386_exec $GOPATH/bin/go_nacl_386_exec
63 % ln -nfs $GOROOT/misc/nacl/go_nacl_arm_exec $GOPATH/bin/go_nacl_arm_exec
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/
doc.go 37 after consulting $GOROOT/pkg/$GOOS_$GOARCH.
64 Look for packages in $GOROOT/pkg/$GOOS_$GOARCH_suffix
65 instead of $GOROOT/pkg/$GOOS_$GOARCH.
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/
sym.go 87 ctxt.Goroot = Getgoroot()
102 ctxt.LineHist.GOROOT = ctxt.Goroot
  /prebuilts/go/linux-x86/src/cmd/compile/
doc.go 34 after consulting $GOROOT/pkg/$GOOS_$GOARCH.
61 Look for packages in $GOROOT/pkg/$GOOS_$GOARCH_suffix
62 instead of $GOROOT/pkg/$GOOS_$GOARCH.
  /prebuilts/go/linux-x86/src/cmd/go/
tool.go 107 // Set $GOROOT, mainly for go tool dist.
108 Env: mergeEnvLists([]string{"GOROOT=" + goroot}, os.Environ()),
doc.go 30 on what is installed in GOROOT and GOPATH, as well as the form of the argument,
39 scanning is determined lexically, but the GOROOT tree is always scanned before
main.go 134 // Diagnose common mistake: GOPATH==GOROOT.
137 if gopath := os.Getenv("GOPATH"); gopath == runtime.GOROOT() {
138 fmt.Fprintf(os.Stderr, "warning: GOPATH set to GOROOT (%s) has no effect\n", gopath)
155 if fi, err := os.Stat(goroot); err != nil || !fi.IsDir() {
156 fmt.Fprintf(os.Stderr, "go: cannot find GOROOT directory: %v\n", goroot)
543 // under the $GOPATH directories and $GOROOT matching pattern.
660 // "cd $GOROOT/src; go list ./io/..." would incorrectly skip the io
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
sym.go 84 ctxt.Goroot = Getgoroot()
99 ctxt.LineHist.GOROOT = ctxt.Goroot
  /prebuilts/go/linux-x86/src/
make.bat 54 :: Set GOROOT for build.
56 set GOROOT=%CD%
65 set GOROOT=%GOROOT_BOOTSTRAP%
make.bash 52 echo 'make.bash must be run from $GOROOT/src' 1>&2
114 export GOROOT="$(cd .. && pwd)"
121 GOROOT="$GOROOT_BOOTSTRAP" GOOS="" GOARCH="" "$GOROOT_BOOTSTRAP/bin/go" build -o cmd/dist/dist ./cmd/dist
  /prebuilts/go/darwin-x86/src/go/build/
build.go 33 GOROOT string // Go root
207 if p == "" || p == ctxt.GOROOT {
209 // If the path is the GOROOT, ignore it.
210 // People sometimes set GOPATH=$GOROOT.
239 if ctxt.GOROOT != "" {
240 dir := ctxt.joinPath(ctxt.GOROOT, "src")
255 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
256 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
292 c.GOROOT = runtime.GOROOT()
    [all...]
deps_test.go 413 func listStdPkgs(goroot string) ([]string, error) {
417 src := filepath.Join(goroot, "src") + string(filepath.Separator)
447 t.Skipf("skipping on %s/%s, missing full GOROOT", runtime.GOOS, runtime.GOARCH)
451 all, err := listStdPkgs(ctxt.GOROOT)
482 dir := filepath.Join(Default.GOROOT, "src", pkg)
  /prebuilts/go/linux-x86/src/go/build/
build.go 33 GOROOT string // Go root
207 if p == "" || p == ctxt.GOROOT {
209 // If the path is the GOROOT, ignore it.
210 // People sometimes set GOPATH=$GOROOT.
239 if ctxt.GOROOT != "" {
240 dir := ctxt.joinPath(ctxt.GOROOT, "src")
255 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
256 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
292 c.GOROOT = runtime.GOROOT()
    [all...]
  /prebuilts/go/darwin-x86/doc/
install.html 115 In this case you must set the <code>GOROOT</code> environment variable
125 export GOROOT=$HOME/go
126 export PATH=$PATH:$GOROOT/bin
130 <b>Note</b>: <code>GOROOT</code> must be set only when installing to a custom
193 you must set the <code>GOROOT</code> environment variable to your chosen path.
  /prebuilts/go/linux-x86/doc/
install.html 115 In this case you must set the <code>GOROOT</code> environment variable
125 export GOROOT=$HOME/go
126 export PATH=$PATH:$GOROOT/bin
130 <b>Note</b>: <code>GOROOT</code> must be set only when installing to a custom
193 you must set the <code>GOROOT</code> environment variable to your chosen path.
  /prebuilts/go/darwin-x86/src/cmd/vet/whitelist/
whitelist.go 14 find $GOROOT/src -type f | grep -v _test.go | xargs grep '^type.*\[\]' | \
  /prebuilts/go/darwin-x86/src/cmd/yacc/
doc.go 23 The directory $GOROOT/src/cmd/yacc/testdata/expr is a yacc program
  /prebuilts/go/linux-x86/src/cmd/vet/whitelist/
whitelist.go 14 find $GOROOT/src -type f | grep -v _test.go | xargs grep '^type.*\[\]' | \
  /prebuilts/go/linux-x86/src/cmd/yacc/
doc.go 23 The directory $GOROOT/src/cmd/yacc/testdata/expr is a yacc program

Completed in 394 milliseconds

1 2 3 45 6 7 8 91011>>