https://github.com/python/cpython/commit/d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3
commit: d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3
branch: main
author: Russell Keith-Magee <[email protected]>
committer: ned-deily <[email protected]>
date: 2024-09-05T21:36:01-04:00
summary:
Ensure clang++ is autodetected on iOS. (gh-123749)
files:
M configure
M configure.ac
diff --git a/configure b/configure
index 54982ab2aad9aa..2e8044819083f3 100755
--- a/configure
+++ b/configure
@@ -4146,9 +4146,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 32e673e83e52d5..38582d9987dc28 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]