I have a iOS project that I am slowly porting to use XCFrameworks, but I would need to run it for a while like it used to run on my intel Mac. Both Xcode and the simulator have the "Open using rosetta" option, but I still cannot compile the project as it is to run on simulator, archive works ok as expected. Thanks for your attention and any help.
Asked
Active
Viewed 3,267 times
1 Answers
0
You can prepend arch -x86_64
when running Xcode from terminal. This will run Xcode under rosetta:
arch -x86_64 /Applications/Xcode.app/Contents/MacOS/Xcode

Soumya Mahunt
- 2,148
- 12
- 30