After updating the project on Xcode 5.1 Product> Build gives the following warning and error:
ld: warning: ignoring Dropbox / Dropbox.framework / Dropbox file, missing required arm64 architecture in Dropbox.framework / Dropbox file (3 slices)Undefined symbols for arm64 architecture: "_OBJC_CLASS _ $ _ DBPath", link: objc-class-ref in DropboxViewController.o
ld: warning: ignoring Dropbox / Dropbox.framework / Dropbox file, missing required arm64 architecture in Dropbox.framework / Dropbox file (3 slices)
Undefined symbols for arm64 architecture: "_OBJC_CLASS _ $ _ DBPath", link: objc-class-ref in DropboxViewController.o
Dropbox.framework doesn't seem to support arm64 yet.
What are the Xcode settings for removing arm64 support from a project to have a clean build?
Edit:
Standard
arm64 armv7 armv7s
To:
armv7 armv7s
Remove armv64 in
armv64
Project> Build Options> Architectures> Virtual Architectures
(i.e. leave only armv7 and armv7s )
armv7
armv7s
Also set Build Active Architectures Only to NO .
Build Active Architectures Only
NO