https://github.com/python/cpython/commit/135dad9bd70bba5a7b432c744f2993476915cf07
commit: 135dad9bd70bba5a7b432c744f2993476915cf07
branch: main
author: Russell Keith-Magee <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2024-09-04T08:28:39+08:00
summary:

Add shims for iOS C++ compilation (#123620)

Add shims for iOS C++ compilation.

files:
A iOS/Resources/bin/arm64-apple-ios-clang++
A iOS/Resources/bin/arm64-apple-ios-simulator-clang++
A iOS/Resources/bin/x86_64-apple-ios-simulator-clang++

diff --git a/iOS/Resources/bin/arm64-apple-ios-clang++ 
b/iOS/Resources/bin/arm64-apple-ios-clang++
new file mode 100755
index 00000000000000..f24bec11268f7e
--- /dev/null
+++ b/iOS/Resources/bin/arm64-apple-ios-clang++
@@ -0,0 +1,2 @@
+#!/bin/sh
+xcrun --sdk iphoneos${IOS_SDK_VERSION} clang++ -target arm64-apple-ios $@
diff --git a/iOS/Resources/bin/arm64-apple-ios-simulator-clang++ 
b/iOS/Resources/bin/arm64-apple-ios-simulator-clang++
new file mode 100755
index 00000000000000..ef37d05b512959
--- /dev/null
+++ b/iOS/Resources/bin/arm64-apple-ios-simulator-clang++
@@ -0,0 +1,2 @@
+#!/bin/sh
+xcrun --sdk iphonesimulator${IOS_SDK_VERSION} clang++ -target 
arm64-apple-ios-simulator $@
diff --git a/iOS/Resources/bin/x86_64-apple-ios-simulator-clang++ 
b/iOS/Resources/bin/x86_64-apple-ios-simulator-clang++
new file mode 100755
index 00000000000000..86f03ea32bc2fd
--- /dev/null
+++ b/iOS/Resources/bin/x86_64-apple-ios-simulator-clang++
@@ -0,0 +1,2 @@
+#!/bin/sh
+xcrun --sdk iphonesimulator${IOS_SDK_VERSION} clang++ -target 
x86_64-apple-ios-simulator $@

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to