From 07809880b23339971a6e1bd8a2a5e3b090b53dc7 Mon Sep 17 00:00:00 2001 From: PowderLi <135960789+PowderLi@users.noreply.github.com> Date: Wed, 11 Oct 2023 04:27:33 -0500 Subject: [PATCH] fix vcpkg install path (#27635) Signed-off-by: PowderLi --- scripts/core_build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/core_build.sh b/scripts/core_build.sh index ea437f8efe..983b518229 100755 --- a/scripts/core_build.sh +++ b/scripts/core_build.sh @@ -228,6 +228,8 @@ if [ -z "$BUILD_WITHOUT_AZURE" ]; then ARCHITECTURE=$(uname -m) if [[ ${ARCHITECTURE} == "x86_64" ]]; then ARCHITECTURE="x64" + elif [[ ${ARCHITECTURE} == "aarch64" ]]; then + ARCHITECTURE="arm64" fi VCPKG_TARGET_TRIPLET=${ARCHITECTURE}-${SYSTEM_NAME} fi