summaryrefslogtreecommitdiff
path: root/TestScripts
diff options
context:
space:
mode:
authorJavier Navarro <jn@mega.co.nz>2022-09-06 16:05:16 +0200
committerGitHub <noreply@github.com>2022-09-06 10:05:16 -0400
commit64ecb2e974bfecd26467c4c301de3bd5ed29cb67 (patch)
treed38f7471b0bbb69a319bd5459b33f517b5735517 /TestScripts
parent5a7fd693b59728cfaf3ef536459f1c2256799fc8 (diff)
downloadcryptopp-git-64ecb2e974bfecd26467c4c301de3bd5ed29cb67.tar.gz
Allow use of iPhoneSimulator SDK with arm64 CPU (GH #1149)
Diffstat (limited to 'TestScripts')
-rwxr-xr-xTestScripts/setenv-ios.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/TestScripts/setenv-ios.sh b/TestScripts/setenv-ios.sh
index 0bc43db6..07ae604f 100755
--- a/TestScripts/setenv-ios.sh
+++ b/TestScripts/setenv-ios.sh
@@ -171,6 +171,8 @@ elif [[ "${IOS_SDK}" == "iPhoneSimulator" && "${IOS_CPU}" == "i386" ]]; then
MIN_VER=-miphonesimulator-version-min=6
elif [[ "${IOS_SDK}" == "iPhoneSimulator" && "${IOS_CPU}" == "x86_64" ]]; then
MIN_VER=-miphonesimulator-version-min=6
+elif [[ "${IOS_SDK}" == "iPhoneSimulator" && "${IOS_CPU}" == "arm64" ]]; then
+ MIN_VER=-miphonesimulator-version-min=6
# Apple TV can be 32-bit Intel (1st gen), 32-bit ARM (2nd, 3rd gen) or 64-bit ARM (4th gen)
elif [[ "${IOS_SDK}" == "AppleTVOS" && "${IOS_CPU}" == "i386" ]]; then