mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Ensure clang++ is autodetected on iOS. (gh-123749)
This commit is contained in:
parent
fe24b718d2
commit
d359c7c47b
2 changed files with 6 additions and 6 deletions
6
configure
generated
vendored
6
configure
generated
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue