aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAndrei Lebedev <lebdron@gmail.com>2020-09-09 22:28:38 +0300
committerGitHub <noreply@github.com>2020-09-09 12:28:38 -0700
commit645f3168249c5bf3ccf51d6515c0e3cf550589b0 (patch)
treeb2e814438a57a7f9ba93b4cc96581f2759a545b4 /scripts
parentc4e3da7c5f2fa1e3b477877cbf56418dbf35afc0 (diff)
downloadvcpkg-645f3168249c5bf3ccf51d6515c0e3cf550589b0.tar.gz
vcpkg-645f3168249c5bf3ccf51d6515c0e3cf550589b0.zip
[vcpkg] improve s390x support (#13386)
Signed-off-by: Andrei Lebedev <lebdron@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/bootstrap.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh
index 46f695864..0ab46249f 100644
--- a/scripts/bootstrap.sh
+++ b/scripts/bootstrap.sh
@@ -238,8 +238,8 @@ selectCXX()
UNAME="$(uname)"
ARCH="$(uname -m)"
-# Force using system utilities for building vcpkg if host arch is arm or arm64.
-if [ "$ARCH" = "armv7l" -o "$ARCH" = "aarch64" ]; then
+# Force using system utilities for building vcpkg if host arch is arm, arm64, or s390x.
+if [ "$ARCH" = "armv7l" -o "$ARCH" = "aarch64" -o "$ARCH" = "s390x" ]; then
vcpkgUseSystem=true
fi