https://github.com/python/cpython/commit/8ed77c1afc125035996d85d77919351ae0f0d862
commit: 8ed77c1afc125035996d85d77919351ae0f0d862
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2024-09-06T10:13:27+08:00
summary:

[3.13] Ensure clang++ is autodetected on iOS. (gh-123749) (#123758)

Ensure clang++ is autodetected on iOS. (gh-123749)
(cherry picked from commit d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3)

Co-authored-by: Russell Keith-Magee <[email protected]>

files:
M configure
M configure.ac

diff --git a/configure b/configure
index 26bb63feacfbcb..687b12d5a48d7d 100755
--- a/configure
+++ b/configure
@@ -4144,9 +4144,9 @@ if test -z "$CPP"; then
 fi
 if test -z "$CXX"; then
        case "$host" in
-               aarch64-apple-ios*-simulator) 
CXX=arm64-apple-ios-simulator-clang ;;
-               aarch64-apple-ios*)           CXX=arm64-apple-ios-clang ;;
-               x86_64-apple-ios*-simulator)  
CXX=x86_64-apple-ios-simulator-clang ;;
+               aarch64-apple-ios*-simulator) 
CXX=arm64-apple-ios-simulator-clang++ ;;
+               aarch64-apple-ios*)           CXX=arm64-apple-ios-clang++ ;;
+               x86_64-apple-ios*-simulator)  
CXX=x86_64-apple-ios-simulator-clang++ ;;
                *)
        esac
 fi
diff --git a/configure.ac b/configure.ac
index dc76c446aa85b7..525662de5b8a67 100644
--- a/configure.ac
+++ b/configure.ac
@@ -418,9 +418,9 @@ if test -z "$CPP"; then
 fi
 if test -z "$CXX"; then
        case "$host" in
-               aarch64-apple-ios*-simulator) 
CXX=arm64-apple-ios-simulator-clang ;;
-               aarch64-apple-ios*)           CXX=arm64-apple-ios-clang ;;
-               x86_64-apple-ios*-simulator)  
CXX=x86_64-apple-ios-simulator-clang ;;
+               aarch64-apple-ios*-simulator) 
CXX=arm64-apple-ios-simulator-clang++ ;;
+               aarch64-apple-ios*)           CXX=arm64-apple-ios-clang++ ;;
+               x86_64-apple-ios*-simulator)  
CXX=x86_64-apple-ios-simulator-clang++ ;;
                *)
        esac
 fi

_______________________________________________
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