From 1fde50f63475e425f68a6026f060c49f456b7046 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Wed, 24 Nov 2021 11:05:20 +0100 Subject: [PATCH] Work around dynamic linking warning in Catalyst "was built for newer Mac Catalyst version (14.0) than being linked (13.0)" --- create-openssl-framework.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-openssl-framework.sh b/create-openssl-framework.sh index 97dcecf..660bb25 100755 --- a/create-openssl-framework.sh +++ b/create-openssl-framework.sh @@ -141,7 +141,7 @@ if [ $FWTYPE == "dynamic" ]; then elif [[ $PLATFORM == MacOSX* ]]; then MIN_SDK="-macosx_version_min $MIN_SDK_VERSION" elif [[ $PLATFORM == Catalyst* ]]; then - MIN_SDK="-platform_version mac-catalyst 13.0 $MIN_SDK_VERSION" + MIN_SDK="-platform_version mac-catalyst $MIN_SDK_VERSION $MIN_SDK_VERSION" PLATFORM="MacOSX" elif [[ $PLATFORM == iPhoneSimulator* ]]; then MIN_SDK="-ios_simulator_version_min $MIN_SDK_VERSION"