Add ios arm64e arch support (#2537)

This commit is contained in:
Jamil 2020-11-24 09:28:32 +06:00 committed by GitHub
parent bef8339e31
commit fe963266b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -118,6 +118,10 @@ if test "${ARCH}" = ""; then
fi
export ARCH_VAL=`echo ${ARCH} | sed 's/\-arch //' | sed -e 's/^[ \t]*//;s/[ \t]*$//' `
if test "${ARCH_VAL}" = "arm64e"; then
export ARCH_VAL="arm64"
fi
if test "${MIN_IOS}" = ""; then
MIN_IOS_VER="7.0"
echo "$F: MIN_IOS is not specified, choosing ${MIN_IOS_VER}"