diff options
author | Russell Keith-Magee <russell@keith-magee.com> | 2024-09-06 01:36:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 01:36:01 (GMT) |
commit | d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3 (patch) | |
tree | 44d8e5026fd22c813a72af57088cbdf7615d9811 /configure | |
parent | fe24b718d231317516f96f896e7c17a4166f25a7 (diff) | |
download | cpython-d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3.zip cpython-d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3.tar.gz cpython-d359c7c47b7e713cfbf7ba335d96b5f45e0f13e3.tar.bz2 |
Ensure clang++ is autodetected on iOS. (gh-123749)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |