Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Poland (0.18 sec)

  1. common/scripts/setup_env.sh

      TARGET_OUT_LINUX=${CONTAINER_TARGET_OUT_LINUX}
      REPO_ROOT=/work
      LOCAL_OUT="${TARGET_OUT_LINUX}"
    else
      LOCAL_OUT="${TARGET_OUT}"
    fi
    
    go_os_arch=${LOCAL_OUT##*/}
    # Golang OS/Arch format
    LOCAL_GO_OS=${go_os_arch%_*}
    LOCAL_GO_ARCH=${go_os_arch##*_}
    
    BUILD_WITH_CONTAINER=0
    
    VARS=(
          CONTAINER_TARGET_OUT
          CONTAINER_TARGET_OUT_LINUX
          TARGET_OUT
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  2. buildscripts/checkdeps.sh

    		exit 1
    		;;
    	esac
    }
    
    assert_check_golang_env() {
    	if ! which go >/dev/null 2>&1; then
    		echo "Cannot find go binary in your PATH configuration, please refer to Go installation document at https://golang.org/doc/install"
    		exit 1
    	fi
    
    	installed_go_version=$(go version | sed 's/^.* go\([0-9.]*\).*$/\1/')
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri May 26 05:07:25 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/bootstrap.bash

    # and used as $GOROOT_BOOTSTRAP to bootstrap a local build.
    #
    # Only changes that have been committed to Git (at least locally,
    # not necessary reviewed and submitted to master) are included in the tree.
    #
    # See also golang.org/x/build/cmd/genbootstrap, which is used
    # to generate bootstrap tgz files for builders.
    
    set -e
    
    if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then
    	echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash [-force]" >&2
    	exit 2
    Shell Script
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jan 20 17:52:26 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top