Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for GOTOOLDIR (0.1 sec)

  1. src/all.bash

    # license that can be found in the LICENSE file.
    
    set -e
    if [ ! -f make.bash ]; then
    	echo 'all.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    . ./make.bash "$@" --no-banner
    bash run.bash --no-rebuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:53:58 UTC 2024
    - 377 bytes
    - Viewed (0)
  2. src/make.rc

    eval `{./cmd/dist/dist env -9}
    if(~ $#vflag 1)
    	echo
    
    if(~ $1 --dist-tool){
    	# Stop after building dist tool.
    	mkdir -p $GOTOOLDIR
    	if(! ~ $2 '')
    		cp cmd/dist/dist $2
    	mv cmd/dist/dist $GOTOOLDIR/dist
    	exit
    }
    
    # Run dist bootstrap to complete make.bash.
    # Bootstrap installs a proper cmd/dist, built with the new toolchain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/internal/cfg/cfg.go

    	GOHOSTOS
    	GOINSECURE
    	GOMIPS
    	GOMIPS64
    	GOMODCACHE
    	GONOPROXY
    	GONOSUMDB
    	GOOS
    	GOPATH
    	GOPPC64
    	GOPRIVATE
    	GOPROXY
    	GORISCV64
    	GOROOT
    	GOSUMDB
    	GOTMPDIR
    	GOTOOLCHAIN
    	GOTOOLDIR
    	GOVCS
    	GOWASM
    	GOWORK
    	GO_EXTLINK_ENABLED
    	PKG_CONFIG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/00-bug.yml

            GOPATH="/Users/gopher/go"
            GOPRIVATE=""
            GOPROXY="https://proxy.golang.org,direct"
            GOROOT="/usr/local/go"
            GOSUMDB="sum.golang.org"
            GOTMPDIR=""
            GOTOOLDIR="/usr/local/go/pkg/tool/darwin_arm64"
            GOVCS=""
            GOVERSION="go1.20.7"
            GCCGO="gccgo"
            AR="ar"
            CC="clang"
            CXX="clang++"
            CGO_ENABLED="1"
            GOMOD="/dev/null"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/make.bat

    echo ERROR:...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/make.bash

    	exit 1
    fi
    
    if $verbose; then
    	echo
    fi
    
    if [[ "$1" == "--dist-tool" ]]; then
    	# Stop after building dist tool.
    	mkdir -p "$GOTOOLDIR"
    	if [[ "$2" != "" ]]; then
    		cp cmd/dist/dist "$2"
    	fi
    	mv cmd/dist/dist "$GOTOOLDIR"/dist
    	exit 0
    fi
    
    # Run dist bootstrap to complete make.bash.
    # Bootstrap installs a proper cmd/dist, built with the new toolchain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOROOT", Value: cfg.GOROOT},
    		{Name: "GOSUMDB", Value: cfg.GOSUMDB, Changed: cfg.GOSUMDBChanged},
    		{Name: "GOTMPDIR", Value: cfg.Getenv("GOTMPDIR")},
    		{Name: "GOTOOLCHAIN"},
    		{Name: "GOTOOLDIR", Value: build.ToolDir},
    		{Name: "GOVCS", Value: cfg.GOVCS},
    		{Name: "GOVERSION", Value: runtime.Version()},
    		{Name: "GODEBUG", Value: os.Getenv("GODEBUG")},
    		{Name: "GOTELEMETRY", Value: telemetry.Mode()},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top