Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for GOTOOLDIR (0.28 sec)

  1. src/cmd/go/internal/work/build.go

    Executables are installed in the directory named by the GOBIN environment
    variable, which defaults to $GOPATH/bin or $HOME/go/bin if the GOPATH
    environment variable is not set. Executables in $GOROOT
    are installed in $GOROOT/bin or $GOTOOLDIR instead of $GOBIN.
    
    If the arguments have version suffixes (like @latest or @v1.0.0), "go install"
    builds packages in module-aware mode, ignoring the go.mod file in the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    		If module-aware mode is enabled, but there is no go.mod, GOMOD will be
    		os.DevNull ("/dev/null" on Unix-like systems, "NUL" on Windows).
    		If module-aware mode is disabled, GOMOD will be the empty string.
    	GOTOOLDIR
    		The directory where the go tools (compile, cover, doc, etc...) are installed.
    	GOVERSION
    		The version of the installed Go tree, as reported by runtime.Version.
    	`,
    }
    
    var HelpFileType = &base.Command{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	xprintf(format, "GOOS", goos)
    	xprintf(format, "GOPROXY", os.Getenv("GOPROXY"))
    	xprintf(format, "GOROOT", goroot)
    	xprintf(format, "GOTMPDIR", os.Getenv("GOTMPDIR"))
    	xprintf(format, "GOTOOLDIR", tooldir)
    	if goarch == "arm" {
    		xprintf(format, "GOARM", goarm)
    	}
    	if goarch == "arm64" {
    		xprintf(format, "GOARM64", goarm64)
    	}
    	if goarch == "386" {
    		xprintf(format, "GO386", go386)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // variable, which defaults to $GOPATH/bin or $HOME/go/bin if the GOPATH
    // environment variable is not set. Executables in $GOROOT
    // are installed in $GOROOT/bin or $GOTOOLDIR instead of $GOBIN.
    //
    // If the arguments have version suffixes (like @latest or @v1.0.0), "go install"
    // builds packages in module-aware mode, ignoring the go.mod file in the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top