From 6eb0189b24b2e5986116840728699799f463f9c3 Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 15 Dec 2022 15:14:44 -0800 Subject: [PATCH] xcframeworkbuild.sh: bump MACOSX_CATALYST_MIN_VERSION 14.0 (-target x86_64-apple-ios14.0-macabi) is supported by default in Xcode 14.0.1. Change-Id: I05bc318fe321758c68c7be2e339d77512dd81684 --- xcframeworkbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcframeworkbuild.sh b/xcframeworkbuild.sh index 5310df27..8d484c2a 100755 --- a/xcframeworkbuild.sh +++ b/xcframeworkbuild.sh @@ -15,7 +15,7 @@ set -e # Set these variables based on the desired minimum deployment target. readonly IOS_MIN_VERSION=6.0 readonly MACOSX_MIN_VERSION=10.15 -readonly MACOSX_CATALYST_MIN_VERSION=13.0 +readonly MACOSX_CATALYST_MIN_VERSION=14.0 # Extract Xcode version. readonly XCODE=$(xcodebuild -version | grep Xcode | cut -d " " -f2)