mirror of
https://github.com/python/cpython.git
synced 2025-08-26 19:55:24 +00:00
gh-114099 - Add iOS testbed, plus Makefile target to invoke it. (gh-115930)
This commit is contained in:
parent
bc708c76d2
commit
b33980a2e3
21 changed files with 1195 additions and 126 deletions
44
iOS/testbed/Python.xcframework/Info.plist
Normal file
44
iOS/testbed/Python.xcframework/Info.plist
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>AvailableLibraries</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>Python.framework/Python</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>Python.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>Python.framework/Python</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64_x86_64-simulator</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>Python.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
<string>x86_64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
<key>SupportedPlatformVariant</key>
|
||||
<string>simulator</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>XFWK</string>
|
||||
<key>XCFrameworkFormatVersion</key>
|
||||
<string>1.0</string>
|
||||
</dict>
|
||||
</plist>
|
4
iOS/testbed/Python.xcframework/ios-arm64/README
Normal file
4
iOS/testbed/Python.xcframework/ios-arm64/README
Normal file
|
@ -0,0 +1,4 @@
|
|||
This directory is intentionally empty.
|
||||
|
||||
It should be used as a target for `--enable-framework` when compiling an iOS on-device
|
||||
build for testing purposes.
|
|
@ -0,0 +1,4 @@
|
|||
This directory is intentionally empty.
|
||||
|
||||
It should be used as a target for `--enable-framework` when compiling an iOS simulator
|
||||
build for testing purposes (either x86_64 or ARM64).
|
Loading…
Add table
Add a link
Reference in a new issue