Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GOTOOLDIR (0.11 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)
Back to top