diff --git a/iosbuild.sh b/iosbuild.sh index 859aa348..62cb8dcb 100755 --- a/iosbuild.sh +++ b/iosbuild.sh @@ -31,8 +31,8 @@ readonly OLDPATH=${PATH} # Add iPhoneOS-V6 to the list of platforms below if you need armv6 support. # Note that iPhoneOS-V6 support is not available with the iOS6 SDK. -PLATFORMS="iPhoneSimulator iPhoneSimulator64" -PLATFORMS+=" iPhoneOS-V7 iPhoneOS-V7s iPhoneOS-V7-arm64" +PLATFORMS="iPhoneSimulator64" +PLATFORMS+=" iPhoneOS-arm64" readonly PLATFORMS readonly SRCDIR=$(dirname $0) readonly TOPDIR=$(pwd) @@ -98,7 +98,7 @@ fi for PLATFORM in ${PLATFORMS}; do ARCH2="" - if [[ "${PLATFORM}" == "iPhoneOS-V7-arm64" ]]; then + if [[ "${PLATFORM}" == "iPhoneOS-arm64" ]]; then PLATFORM="iPhoneOS" ARCH="aarch64" ARCH2="arm64" diff --git a/xcframeworkbuild.sh b/xcframeworkbuild.sh index a54b449b..3c1c56cb 100755 --- a/xcframeworkbuild.sh +++ b/xcframeworkbuild.sh @@ -41,8 +41,8 @@ readonly NUM_PLATFORMS=4 readonly OLDPATH=${PATH} # Names should be of the form '-[-]'. -PLATFORMS[$IOS]="iPhoneOS-armv7 iPhoneOS-armv7s iPhoneOS-arm64" -PLATFORMS[$IOS_SIMULATOR]="iPhoneSimulator-i386 iPhoneSimulator-x86_64" +PLATFORMS[$IOS]="iPhoneOS-arm64" +PLATFORMS[$IOS_SIMULATOR]="iPhoneSimulator-x86_64" PLATFORMS[$MACOS]="MacOSX-x86_64" PLATFORMS[$MACOS_CATALYST]="MacOSX-Catalyst-x86_64" if [[ "${XCODE%%.*}" -ge 12 ]]; then