summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2024-09-06 01:36:01 (GMT)
committerGitHub <noreply@github.com>2024-09-06 01:36:01 (GMT)
commitd359c7c47b7e713cfbf7ba335d96b5f45e0f13e3 (patch)
tree44d8e5026fd22c813a72af57088cbdf7615d9811 /configure
parentfe24b718d231317516f96f896e7c17a4166f25a7 (diff)
downloadcpython-d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3.zip
cpython-d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3.tar.gz
cpython-d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3.tar.bz2
Ensure clang++ is autodetected on iOS. (gh-123749)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 54982ab..2e80448 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