Hi,
Can anyone please share some information on why my Mac with apple silicon still using iOS simulator with x86_64 architecture instead of arm64 architecture.
The problem arises when I use FFMPEG frameworks, these frameworks are working on arm64, so they should work on iOS Simulator, but I get error saying these frameworks are for arm64 and Xcode/iOS simulator needs x86_64 based frameworks.
why Xcode still expects frameworks with x86_64 architecture.
Thanks,
Xcode supports arm64 apps for the iOS simulator, and has since the introduction of Apple silicon Macs.
The problem arises when I use FFMPEG frameworks, these frameworks are working on arm64, so they should work on iOS Simulator
Libraries need to rebuild for the iOS simulator to support Apple silicon Macs. Having arm64
support that is originally intended for an iOS device is not enough, it needs to be specifically built for the simulator, so the errors you are seeing in your project are probably enumerated in Technote 3117. Since you're using a third-party library, you should be looking for their support in getting an updated build that supports the iOS Simulator with an arm64
architecture.
If you're using the library in your Xcode project in pre-built form, it needs to be an an XCFramework, as that is the supported way to get support a simulator build with arm64
that is distinct from a device build with arm64
.
—Ed Ford, DTS Engineer