ios - Xcode 5.1: missing required architecture arm64 -


just upgraded xcode 5.1, getting following error:

ignoring file ...dependencies/salesforcenetworksdk/libsalesforcenetworksdk.a, missing required architecture arm64 in file ...dependencies/salesforcenetworksdk/libsalesforcenetworksdk.a (3 slices)

if turn off build active archs , remove arm64 valid archs get:

build/products/debug-iphoneos/libpods.a, file built archive not architecture being linked (armv7)

according apple's release note, see following note point.

note:

be aware of following architectures issues when opening existing projects in xcode 5.1:

  • when building architectures, remove explicit architectures setting , use default standard architectures setting. projects opted-in using “standard architectures including 64-bit”, switch “standard architectures” setting.
  • when opening existing project first time, xcode 5.1 may display warning use of xcode 5.0 architectures setting. selecting warning provides workflow revise setting.
  • projects not able support 64-bit need set architectures build setting not include 64-bit.

so you've set architecture below support libs architecture.

enter image description here

reference from post.

update: may 15, you've take build 5.1.1, see post.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -