I have a 3rd party .a library, which is apparently compiled for only armv6 compatibility, where both new Xcodes (3.2.6 and 4), both now require a separate armv7 slice to run on the device. The link error is: file is universal but does not contain a(n) armv7 slice for architecture armv7

Anyone know how to make either of the two new Xcodes operate as 3.2.5 did and accept the existing library while I'm waiting for the library vendor to cook up an armv7 version?

Thanks.

link|improve this question

2  
If you look at your build settings, the Architectures setting is probably Standard, which includes both armv6 and armv7. To change it to just armv6, change it to custom and type in armv6. – ughoavgfhw Mar 10 '11 at 22:31
Yes - that works! Thanks for the response. – Owen Hartnett Mar 11 '11 at 15:47
Put that in an answer & accept it as answered. Solution solved my problem I want to vote up :) – Asad Khan Mar 15 '11 at 5:58
1  
Here's what's been working for me on Xcode 4. Open up the build settings and look for Architectures. You'll probably have a default value in there. When you edit it, a dialog will open up. Delete the default setting, and add the following on separate lines: armv6 i386 x64. That should do it (note that you're not going to get any armv7 optimization anywhere). – Owen Hartnett Jun 15 '11 at 19:17
I ran up against an issue where I had both armv7 and armv6 third party libraries and the XCode 4 linker refused to link them. Did not find any way around this, other than to compile in Xcode 3. – Ben Flynn May 16 at 16:08
show 1 more comment
feedback

3 Answers

up vote 3 down vote accepted

In Project Settings, select "Standard" for the architecture (not "Optimized"). This should allow you to select "armv6" for the Active Architecture. This means it should also work on older devices (barring any other deprecations) once it's on the app store.

link|improve this answer
feedback

Nothing worked for me until i set "Build Active Architecture Only" to No.

link|improve this answer
feedback

I have the same issue with the same type of file (.a) and I've set my Project->Archtitectures->Standard and Project->Archtitectures->BaseSDK->LatestiOS and I'm still getting the error. Anything else I should check?

link|improve this answer
Standard gives you both armv6 and armv7. You need to explicitly add armv6 without armv7, else it will look unsuccessfully for a armv7 slice, which isn't there. – Owen Hartnett Apr 29 '11 at 13:21
Also, you can use lipo to see what slices are actually in the library. – Owen Hartnett Apr 29 '11 at 13:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.