Reputation: 2746
How can I check supported archs of my apps (ex. MyApp.app)?
This folder is product after building by Xcode.
I use command: "file MyApp.app/MyApp" and it shows:
Mach-O executable arm
What is this?
I really want to know which architectures it supports (armv6, armv7, armv7s or i386).
Upvotes: 7
Views: 1763
Reputation: 538
You can use lipo -info MyApp.app/MyApp
to see what architecures are supported.
Upvotes: 13