Create XCFramework for arm simulator
See original GitHub issueHi guys, your plugin is awesome! But I stuck with one problem. Here is my configuration :
multiplatformSwiftPackage {
packageName("XXX")
swiftToolsVersion("5.3")
targetPlatforms {
iOS { v("13") }
}
}
createSwiftPackage task generates Swift package with two targets ios-arm64 and ios-x86_64-simulator, this works great on Intel Mac simulators and iPhones, but this not works on Apple silicone arm simulator.
So is it possible to generate target for Arm simulator ?
Issue Analytics
- State:
- Created 2 years ago
- Reactions:23
- Comments:9
Top Results From Across the Web
Both ios-arm64-simulator and ios-x… | Apple Developer Forums
An xcframework is for bundling multiple platforms together into a distributable binary package. You can put ios , ios-simulator , ios-macabi , darwin...
Read more >How to build an XCFramework for Apple Silicon M1 and Intel ...
sim -x86_64/ABCFramework.framework/ABCFramework Building an XCFramework (Pass the path of the frameworks and output) xcodebuild ...
Read more >Distributing Multi-arch SDKs for Apple silicon (M1) and Intel ...
Once the archives are created, use the xcodebuild command -create-xcframework followed by the frameworks you wish to be included in the binary.
Read more >Hacking native ARM64 binaries to run on the iOS Simulator
Historically, the ARM/x86 bifurcation in the Apple product line meant ... We can make an educated guess that the Simulator information is ...
Read more >How to build an xcframework for Apple Silicon arm64 simulator?
Try to separate your parameter to this: -arch arm64 -sdk iphonesimulator.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Anyway I submitted new pull request with new targets support.
Is this planned to be merged ? I need to run on arm simulator.