mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
[3.13] Add shims for iOS C++ compilation (GH-123620) (#123656)
Add shims for iOS C++ compilation (GH-123620)
Add shims for iOS C++ compilation.
(cherry picked from commit 135dad9bd7
)
Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
This commit is contained in:
parent
aeb39b72b2
commit
3dd5ce3768
3 changed files with 6 additions and 0 deletions
2
iOS/Resources/bin/arm64-apple-ios-clang++
Executable file
2
iOS/Resources/bin/arm64-apple-ios-clang++
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
xcrun --sdk iphoneos${IOS_SDK_VERSION} clang++ -target arm64-apple-ios $@
|
2
iOS/Resources/bin/arm64-apple-ios-simulator-clang++
Executable file
2
iOS/Resources/bin/arm64-apple-ios-simulator-clang++
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
xcrun --sdk iphonesimulator${IOS_SDK_VERSION} clang++ -target arm64-apple-ios-simulator $@
|
2
iOS/Resources/bin/x86_64-apple-ios-simulator-clang++
Executable file
2
iOS/Resources/bin/x86_64-apple-ios-simulator-clang++
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
xcrun --sdk iphonesimulator${IOS_SDK_VERSION} clang++ -target x86_64-apple-ios-simulator $@
|
Loading…
Add table
Add a link
Reference in a new issue