https://github.com/python/cpython/commit/d856402e7176e5a03c5c578f0efc1be968be3257
commit: d856402e7176e5a03c5c578f0efc1be968be3257
branch: main
author: Clément Péron <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2026-08-22T11:05:20+08:00
summary:

gh-156115: Use the simulator deployment-target flag for iOS simulator builds 
(#156116)

Ensures that CFLAGS and LDFLAGS use -mios-simulator-version-min, rather
than the device-based -mios-version-min. This only matters if the CFLAGS
and LDFLAGS are used in a bare call to clang without a -target; but that is
a legal usage, so it's worth catching.

files:
A Misc/NEWS.d/next/Build/2026-08-20-14-02-33.gh-issue-156115.KXr8wU.rst
M configure
M configure.ac

diff --git 
a/Misc/NEWS.d/next/Build/2026-08-20-14-02-33.gh-issue-156115.KXr8wU.rst 
b/Misc/NEWS.d/next/Build/2026-08-20-14-02-33.gh-issue-156115.KXr8wU.rst
new file mode 100644
index 000000000000000..612180d3b65db21
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2026-08-20-14-02-33.gh-issue-156115.KXr8wU.rst
@@ -0,0 +1,4 @@
+iOS simulator builds are now configured with
+``-mios-simulator-version-min`` instead of the device's
+``-mios-version-min``. The device flag made the linker reject libraries
+resolved from the simulator SDK, so library detection silently failed.
diff --git a/configure b/configure
index ea560d600722592..1b03d29e91a8336 100755
--- a/configure
+++ b/configure
@@ -4895,8 +4895,13 @@ case $host in #(
      ;;
 esac
 
-case $ac_sys_system in #(
-  iOS) :
+case $host in #(
+  *-apple-ios*-simulator) :
+
+    as_fn_append CFLAGS " 
-mios-simulator-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"
+    as_fn_append LDFLAGS " 
-mios-simulator-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"
+   ;; #(
+  *-apple-ios*) :
 
     as_fn_append CFLAGS " -mios-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"
     as_fn_append LDFLAGS " -mios-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"
diff --git a/configure.ac b/configure.ac
index 7dfc6ca29297a8b..99444990cf0c741 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1006,8 +1006,12 @@ AS_CASE([$host],
 )
 
 dnl Add the compiler flag for the iOS minimum supported OS version.
-AS_CASE([$ac_sys_system],
-  [iOS], [
+AS_CASE([$host],
+  [*-apple-ios*-simulator], [
+    AS_VAR_APPEND([CFLAGS], [" 
-mios-simulator-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"])
+    AS_VAR_APPEND([LDFLAGS], [" 
-mios-simulator-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"])
+  ],
+  [*-apple-ios*], [
     AS_VAR_APPEND([CFLAGS], [" 
-mios-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"])
     AS_VAR_APPEND([LDFLAGS], [" 
-mios-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"])
   ],

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to