I have an XCode project configured like this:
My question: Does the resulting binary (.ipa) have 2 executables in it - one for each architecture, or just some different object files for each architecture or is the split even finer grained than that?
Just curious. Thanks.
From what you described, the ipa should have a multi-architecture binary with both arm6 and arm7. You can check it with the file
command in terminal. Inside of your app bundle is a executable that will have the same name as the app, myApp.app/myApp. Entering:
file myApp.app/myApp
in terminal will then print what it contains for you to double check. It should list the 2 architectures.