File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 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 @@ -3158,7 +3158,7 @@ $as_echo "\"$MACHDEP\"" >&6; }
3158
3158
# On cross-compile builds, configure will look for a host-specific compiler by
3159
3159
# prepending the user-provided host triple to the required binary name.
3160
3160
#
3161
- # On iOS, this results in binaries like "arm64-apple-ios12 .0-simulator-gcc",
3161
+ # On iOS, this results in binaries like "arm64-apple-ios13 .0-simulator-gcc",
3162
3162
# which isn't a binary that exists, and isn't very convenient, as it contains the
3163
3163
# iOS version. As the default cross-compiler name won't exist, configure falls
3164
3164
# back to gcc, which *definitely* won't work. We're providing wrapper scripts for
@@ -3580,8 +3580,12 @@ if test "$cross_compiling" = yes; then
3580
3580
_host_device=${_host_device:=os}
3581
3581
3582
3582
# IPHONEOS_DEPLOYMENT_TARGET is the minimum supported iOS version
3583
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking iOS deployment target" >&5
3584
+ printf %s "checking iOS deployment target... " >&6; }
3583
3585
IPHONEOS_DEPLOYMENT_TARGET=${_host_os:3}
3584
- IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=12.0}
3586
+ IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=13.0}
3587
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $IPHONEOS_DEPLOYMENT_TARGET" >&5
3588
+ printf "%s\n" "$IPHONEOS_DEPLOYMENT_TARGET" >&6; }
3585
3589
3586
3590
case "$host_cpu" in
3587
3591
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