When creating an iPad-only app, I get the following warning:
"warning: creating a deployment target of" 3.2 "should omit the armv6 architecture.
I would like to edit the Architectures parameter so that it only displays armv7. However, the parameters come from the following marco $ (ARCHS_UNIVERSAL_IPHONE_OS).
Is there a macro that I should use for ipad binaries (not universal).
To get around the problem, I did the following:
-
- Make sure the active target is set to armv7
- Select "Embedded Architecture Only"
This removes the warning and creates a non-universal binary, but I have to do it EVERY time when I switch configurations because the active target continues to default with armv6.
source
share