Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for TARGET_ARCH (0.14 sec)

  1. common/scripts/setup_env.sh

    # Pass environment set target architecture to build system
    if [[ ${TARGET_ARCH} ]]; then
        # Target explicitly set
        :
    elif [[ ${LOCAL_ARCH} == x86_64 ]]; then
        TARGET_ARCH=amd64
    elif [[ ${LOCAL_ARCH} == armv8* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == arm64* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == aarch64* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == armv* ]]; then
        TARGET_ARCH=arm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. tools/docker-copy.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    INPUTS=("${@}")
    TARGET_ARCH=${TARGET_ARCH:-amd64}
    DOCKER_WORKING_DIR=${INPUTS[${#INPUTS[@]}-1]}
    FILES=("${INPUTS[@]:0:${#INPUTS[@]}-1}")
    
    set -eu;
    
    # detect_arch returns "amd64", "arm64", or "" depending on if the file is arch specific
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 03:06:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. release/downloadIstioCandidate.sh

                      tail -1 | awk -F'/' '{ print $2}')"
      ISTIO_VERSION="${ISTIO_VERSION##*/}"
    fi
    
    LOCAL_ARCH=$(uname -m)
    if [ "${TARGET_ARCH}" ]; then
        LOCAL_ARCH=${TARGET_ARCH}
    fi
    
    case "${LOCAL_ARCH}" in
      x86_64|amd64)
        ISTIO_ARCH=amd64
        ;;
      armv8*|aarch64*|arm64)
        ISTIO_ARCH=arm64
        ;;
      armv*)
        ISTIO_ARCH=armv7
        ;;
      *)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. release/downloadIstioCtl.sh

      printf "Unable to get latest Istio version. Set ISTIO_VERSION env var and re-run. For example: export ISTIO_VERSION=1.14.0"
      exit 1;
    fi
    
    LOCAL_ARCH=$(uname -m)
    if [ "${TARGET_ARCH}" ]; then
        LOCAL_ARCH=${TARGET_ARCH}
    fi
    
    case "${LOCAL_ARCH}" in
      x86_64|amd64)
        ISTIO_ARCH=amd64
        ;;
      armv8*|aarch64*|arm64)
        ISTIO_ARCH=arm64
        ;;
      armv*)
        ISTIO_ARCH=armv7
        ;;
      *)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. tools/packaging/packaging.mk

    	fpm -s dir -t rpm -n ${SIDECAR_PACKAGE_NAME} -p ${TARGET_OUT_LINUX}/release/istio-sidecar.rpm --version $(PACKAGE_VERSION) -f \
    		--url http://istio.io  \
    		--license Apache \
    		--architecture "${TARGET_ARCH}" \
    		--vendor istio.io \
    		--maintainer ******@****.*** \
    		--after-install tools/packaging/postinst.sh \
    		--config-files /var/lib/istio/envoy/envoy_bootstrap_tmpl.json \
    		--config-files /var/lib/istio/envoy/sidecar.env \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. Makefile.overrides.mk

    endif
    
    # istioctl-install builds then installs istioctl into $GOPATH/BIN
    # Used for debugging istioctl during dev work
    .PHONY: istioctl-install
    istioctl-install: istioctl-install-container
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 17:29:39 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. bin/init.sh

      exit 1
    fi
    
    # Setup arch suffix for envoy binary. For backwards compatibility, amd64 has no suffix.
    if [[ "${TARGET_ARCH}" == "amd64" ]]; then
    	ISTIO_ENVOY_ARCH_SUFFIX=""
    else
    	ISTIO_ENVOY_ARCH_SUFFIX="-${TARGET_ARCH}"
    fi
    
    # Populate the git version for istio/proxy (i.e. Envoy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. bin/build_ztunnel.sh

    ISTIO_ZTUNNEL_VERSION="${ISTIO_ZTUNNEL_VERSION:-${ZTUNNEL_REPO_SHA}}"
    ISTIO_ZTUNNEL_RELEASE_URL="${ISTIO_ZTUNNEL_RELEASE_URL:-${ISTIO_ZTUNNEL_BASE_URL}/ztunnel-${ISTIO_ZTUNNEL_VERSION}-${TARGET_ARCH}}"
    ISTIO_ZTUNNEL_LINUX_RELEASE_NAME="${ISTIO_ZTUNNEL_LINUX_RELEASE_NAME:-ztunnel-${ISTIO_ZTUNNEL_VERSION}}"
    ISTIO_ZTUNNEL_LINUX_RELEASE_DIR="${ISTIO_ZTUNNEL_LINUX_RELEASE_DIR:-${TARGET_OUT_LINUX}/release}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. tools/docker-builder/main.go

    		s = append(s, k+"="+v)
    	}
    	return s
    }
    
    func archToEnvMap(a string) map[string]string {
    	os, arch, _ := strings.Cut(a, "/")
    	return map[string]string{
    		"TARGET_OS":        os,
    		"TARGET_ARCH":      arch,
    		"TARGET_OUT":       filepath.Join(testenv.IstioSrc, "out", fmt.Sprintf("%s_%s", os, arch)),
    		"TARGET_OUT_LINUX": filepath.Join(testenv.IstioSrc, "out", fmt.Sprintf("linux_%s", arch)),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. Makefile.core.mk

    export GOPATH
    
    # If GOPATH is made up of several paths, use the first one for our targets in this Makefile
    GO_TOP := $(shell echo ${GOPATH} | cut -d ':' -f1)
    export GO_TOP
    
    GO ?= go
    
    GOARCH_LOCAL := $(TARGET_ARCH)
    GOOS_LOCAL := $(TARGET_OS)
    
    #-----------------------------------------------------------------------------
    # Output control
    #-----------------------------------------------------------------------------
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top