Work around dynamic linking warning in Catalyst

"was built for newer Mac Catalyst version (14.0) than being
linked (13.0)"
This commit is contained in:
Davide De Rosa 2021-11-24 11:05:20 +01:00
parent e653c77faa
commit 1fde50f634
1 changed files with 1 additions and 1 deletions

View File

@ -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"