Kaydet (Commit) 4a827917 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

iOS SDK 12.0 is the current now

Also, I don't see why we would want to use -miphoneos-version-min=12.0
just because we build against the 12.0 SDK. Use 11.0 as the minimum
runtime iOS version for now.

Change-Id: I36b9696ce367249e7e8d0a51ee61791e32972390
üst 049e5224
...@@ -2946,13 +2946,13 @@ dnl =================================================================== ...@@ -2946,13 +2946,13 @@ dnl ===================================================================
if test $_os = iOS; then if test $_os = iOS; then
AC_MSG_CHECKING([what iOS SDK to use]) AC_MSG_CHECKING([what iOS SDK to use])
current_sdk_ver=11.4 current_sdk_ver=12.0
if test "$enable_ios_simulator" = "yes"; then if test "$enable_ios_simulator" = "yes"; then
platform=iPhoneSimulator platform=iPhoneSimulator
versionmin=-mios-simulator-version-min=$current_sdk_ver versionmin=-mios-simulator-version-min=$current_sdk_ver
else else
platform=iPhoneOS platform=iPhoneOS
versionmin=-miphoneos-version-min=$current_sdk_ver versionmin=-miphoneos-version-min=11.0
fi fi
xcode_developer=`xcode-select -print-path` xcode_developer=`xcode-select -print-path`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment