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

Skip to content

Commit d359c7c

Browse files
authored
Ensure clang++ is autodetected on iOS. (gh-123749)
1 parent fe24b71 commit d359c7c

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
< 8D7E colgroup>
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