ios7.1 - How to link with framework without arm64 support in Xcode 5.1? -
after upgraded project on xcode 5.1, product > build gives following warning , error:
ld: warning: ignoring file dropbox/dropbox.framework/dropbox, missing required architecture arm64 in file dropbox.framework/dropbox (3 slices)
undefined symbols architecture arm64: "_objc_class_$_dbpath", referenced from: objc-class-ref in dropboxviewcontroller.o
it seems dropbox.framework not support arm64 yet.
what xcode settings remove arm64 support project have clean build?

change:
- architectures:
standard - valid architectures:
arm64 armv7 armv7s
to:
- architectures:
armv7 armv7s - valid architectures:
armv7 armv7s
Comments
Post a Comment