8000 [3.13] Ensure clang++ is autodetected on iOS. (gh-123749) (#123758) · python/cpython@8ed77c1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8ed77c1

Browse files
[3.13] Ensure clang++ is autodetected on iOS. (gh-123749) (#123758)
Ensure clang++ is autodetected on iOS. (gh-123749) (cherry picked from commit d359c7c) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
1 parent fb50266 commit 8ed77c1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

configure

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,9 @@ if test -z "$CPP"; then
418418
fi
419419
if test -z "$CXX"; then
420420
case "$host" in
421-
aarch64-apple-ios*-simulator) CXX=arm64-apple-ios-simulator-clang ;;
422-
aarch64-apple-ios*) CXX=arm64-apple-ios-clang ;;
423-
x86_64-apple-ios*-simulator) CXX=x86_64-apple-ios-simulator-clang ;;
421+
aarch64-apple-ios*-simulator) CXX=arm64-apple-ios-simulator-clang++ ;;
422+
aarch64-apple-ios*) CXX=arm64-apple-ios-clang++ ;;
423+
x86_64-apple-ios*-simulator) CXX=x86_64-apple-ios-simulator-clang++ ;;
424424
*)
425425
esac
426426
fi

0 commit comments

Comments
 (0)
0