allow building 32bit architectures using Xcode >= 11

building with deployment target 9.0 is still allowed
pull/253/head
Andrey Filipenkov 4 years ago
parent c5991e7801
commit 3cdfaa8663
  1. 9
      scripts/function-apple.sh

@ -28,15 +28,6 @@ disable_ios_architecture_not_supported_on_detected_sdk_version() {
local ARCH_NAME=$(get_arch_name $1) local ARCH_NAME=$(get_arch_name $1)
case ${ARCH_NAME} in case ${ARCH_NAME} in
armv7 | armv7s | i386)
# SUPPORTED UNTIL IOS SDK 10.3.1
if [[ $(compare_versions "$2" "10.3.1") -le 0 ]]; then
local SUPPORTED=1
else
local SUPPORTED=0
fi
;;
arm64e) arm64e)
# INTRODUCED IN IOS SDK 10.1 # INTRODUCED IN IOS SDK 10.1

Loading…
Cancel
Save