File tree 4 files changed +12
-5
lines changed
4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change
1
+ The default minimum iOS version was increased to 13.0.
Original file line number Diff line number Diff line change @@ -3130,7 +3130,7 @@ $as_echo "\"$MACHDEP\"" >&6; }
3130
3130
# On cross-compile builds, configure will look for a host-specific compiler by
3131
3131
# prepending the user-provided host triple to the required binary name.
3132
3132
#
3133
- # On iOS, this results in binaries like "arm64-apple-ios12 .0-simulator-gcc",
3133
+ # On iOS, this results in binaries like "arm64-apple-ios13 .0-simulator-gcc",
3134
3134
# which isn't a binary that exists, and isn't very convenient, as it contains the
3135
3135
# iOS version. As the default cross-compiler name won't exist, configure falls
3136
3136
# back to gcc, which *definitely* won't work. We're providing wrapper scripts for
@@ -3552,8 +3552,12 @@ if test "$cross_compiling" = yes; then
3552
3552
_host_device=${_host_device:=os}
3553
3553
3554
3554
# IPHONEOS_DEPLOYMENT_TARGET is the minimum supported iOS version
3555
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking iOS deployment target" >&5
3556
+ $as_echo_n "checking iOS deployment target... " >&6; }
3555
3557
IPHONEOS_DEPLOYMENT_TARGET=${_host_os:3}
3556
- IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=12.0}
3558
+ IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=13.0}
3559
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IPHONEOS_DEPLOYMENT_TARGET" >&5
3560
+ $as_echo "$IPHONEOS_DEPLOYMENT_TARGET" >&6; }
3557
3561
3558
3562
case "$host_cpu" in
3559
3563
aarch64)
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ AC_MSG_RESULT(["$MACHDEP"])
229
229
# On cross-compile builds, configure will look for a host-specific compiler by
230
230
# prepending the user-provided host triple to the required binary name.
231
231
#
232
- # On iOS, this results in binaries like "arm64-apple-ios12 .0-simulator-gcc",
232
+ # On iOS, this results in binaries like "arm64-apple-ios13 .0-simulator-gcc",
233
233
# which isn't a binary that exists, and isn't very convenient, as it contains the
234
234
# iOS version. As the default cross-compiler name won't exist, configure falls
235
235
# back to gcc, which *definitely* won't work. We're providing wrapper scripts for
@@ -631,8 +631,10 @@ if test "$cross_compiling" = yes; then
631
631
_host_device=${_host_device:=os}
632
632
633
633
# IPHONEOS_DEPLOYMENT_TARGET is the minimum supported iOS version
634
+ AC_MSG_CHECKING ( [ iOS deployment target] )
634
635
IPHONEOS_DEPLOYMENT_TARGET=${_host_os:3}
635
- IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=12.0}
636
+ IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=13.0}
637
+ AC_MSG_RESULT ( [ $IPHONEOS_DEPLOYMENT_TARGET] )
636
638
637
639
case "$host_cpu" in
638
640
aarch64)
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ these libraries pre-compiled for iOS can be found in `this repository
185
185
<https://github.com/beeware/cpython-apple-source-deps/releases> `__.
186
186
187
187
By default, Python will be compiled with an iOS deployment target (i.e., the
188
- minimum supported iOS version) of 12 .0. To specify a different deployment
188
+ minimum supported iOS version) of 13 .0. To specify a different deployment
189
189
target, provide the version number as part of the ``--host `` argument - for
190
190
example, ``--host=arm64-apple-ios15.4-simulator `` would compile an ARM64
191
191
simulator build with a deployment target of 15.4.
You can’t perform that action at this time.
0 commit comments