Catalyst: iOS 13.1 is the minimum target for Xcode 13

Fixes #1167
This commit is contained in:
Frank Denis 2022-04-03 00:00:54 +02:00
parent 044da260cf
commit d6fcd7030d

View File

@ -256,8 +256,8 @@ build_catalyst() {
## arm64 catalyst ## arm64 catalyst
if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then if [ "$APPLE_SILICON_SUPPORTED" = "true" ]; then
export CFLAGS="-O2 -arch arm64 -target arm64-apple-ios13.0-macabi -isysroot ${SDK}" export CFLAGS="-O2 -arch arm64 -target arm64-apple-ios13.1-macabi -isysroot ${SDK}"
export LDFLAGS="-arch arm64 -target arm64-apple-ios13.0-macabi -isysroot ${SDK}" export LDFLAGS="-arch arm64 -target arm64-apple-ios13.1-macabi -isysroot ${SDK}"
make distclean >/dev/null 2>&1 make distclean >/dev/null 2>&1
./configure --host=arm-apple-ios --prefix="$CATALYST_ARM64_PREFIX" \ ./configure --host=arm-apple-ios --prefix="$CATALYST_ARM64_PREFIX" \
@ -266,8 +266,8 @@ build_catalyst() {
fi fi
## x86_64 catalyst ## x86_64 catalyst
export CFLAGS="-O2 -arch x86_64 -target x86_64-apple-ios13.0-macabi -isysroot ${SDK}" export CFLAGS="-O2 -arch x86_64 -target x86_64-apple-ios13.1-macabi -isysroot ${SDK}"
export LDFLAGS="-arch x86_64 -target x86_64-apple-ios13.0-macabi -isysroot ${SDK}" export LDFLAGS="-arch x86_64 -target x86_64-apple-ios13.1-macabi -isysroot ${SDK}"
make distclean >/dev/null 2>&1 make distclean >/dev/null 2>&1
./configure --host=x86_64-apple-ios --prefix="$CATALYST_X86_64_PREFIX" \ ./configure --host=x86_64-apple-ios --prefix="$CATALYST_X86_64_PREFIX" \