mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
[3.13] gh-120831: Increase the default minimum supported iOS version to 13.0 (GH-121250) (#121833)
gh-120831: Increase the default minimum supported iOS version to 13.0 (GH-121250)
Increases the default minimum iOS version to 13.0.
(cherry picked from commit 7e91e0dcfe)
Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
parent
0201b98d4c
commit
a1505afd39
5 changed files with 23 additions and 5 deletions
|
|
@ -382,7 +382,7 @@ AC_MSG_RESULT(["$MACHDEP"])
|
|||
# On cross-compile builds, configure will look for a host-specific compiler by
|
||||
# prepending the user-provided host triple to the required binary name.
|
||||
#
|
||||
# On iOS, this results in binaries like "arm64-apple-ios12.0-simulator-gcc",
|
||||
# On iOS, this results in binaries like "arm64-apple-ios13.0-simulator-gcc",
|
||||
# which isn't a binary that exists, and isn't very convenient, as it contains the
|
||||
# iOS version. As the default cross-compiler name won't exist, configure falls
|
||||
# back to gcc, which *definitely* won't work. We're providing wrapper scripts for
|
||||
|
|
@ -774,8 +774,10 @@ if test "$cross_compiling" = yes; then
|
|||
_host_device=${_host_device:=os}
|
||||
|
||||
# IPHONEOS_DEPLOYMENT_TARGET is the minimum supported iOS version
|
||||
AC_MSG_CHECKING([iOS deployment target])
|
||||
IPHONEOS_DEPLOYMENT_TARGET=${_host_os:3}
|
||||
IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=12.0}
|
||||
IPHONEOS_DEPLOYMENT_TARGET=${IPHONEOS_DEPLOYMENT_TARGET:=13.0}
|
||||
AC_MSG_RESULT([$IPHONEOS_DEPLOYMENT_TARGET])
|
||||
|
||||
case "$host_cpu" in
|
||||
aarch64)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue