mirror of https://github.com/python/cpython
[3.13] Ensure clang++ is autodetected on iOS. (gh-123749) (#123758)
Ensure clang++ is autodetected on iOS. (gh-123749)
(cherry picked from commit d359c7c47b
)
Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
This commit is contained in:
parent
fb50266c4b
commit
8ed77c1afc
|
@ -4144,9 +4144,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…
Reference in New Issue