Reputation: 1
I am currently working on a project using Xcode 14.1 with Rosetta implemented in it (I know it is not ideal but it is an old project). The thing is that since a few months ago in my department we are having the problem that every time we install Xcode 15, the projects that are in Xcode 14 or lower that use Rosetta stop working and the following message comes out.
The only solution we found was to reset the computer and never install Xcode 15 again, but due to technical issues, we have to upgrade to this version of Xcode and we have the same problem again.
Does anyone know of a solution that does not involve resetting the computer?
Upvotes: -1
Views: 2162
Reputation: 3
Judging from your error message, I think your framework does not have arm64 simulator architecture. To resolve this, you can exclude arm64 architecture to your project build process. For references, you can see more at here.
Exclude arm64 simulator architecture in your build setting
In case you are using xcconfig, you can add following line to your xcconfig.
EXCLUDED_ARCHS[sdk=iphonesimulator*] = arm64
Upvotes: 0