Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I upgraded Xcode version and when using external static libraries, I get this message:

ld: file is universal (3 slices) but does not contain a(n) armv7s slice: /file/location for architecture armv7s clang: error: linker command failed with exit code 1 (use -v to see invocation)

Is there any way to bypass this and add support to the library if the developer of the library hasn't updated their library yet?

share|improve this question
If you have the source to the library, it's pretty easy. In my case, I'm using OpenEars (for TTS and voice command,) and all I had to do was download the source, open up the Xcode file included with the source code, Xcode automatically updated the build settings, I hit Product -> Build and bam, I had a nifty new OpenEars.framework with support for the new armv7s architecture. If you don't have the source code, then no, I don't think there's anyway to do this, you'll just have to wait for the author to release a new version. – ArtOfWarfare Sep 23 '12 at 19:22
This seems to be a good solution for now - galloway.me.uk/2012/09/hacking-up-an-armv7s-library – Quakeboy Oct 21 '12 at 21:50

6 Answers

up vote 268 down vote accepted

If you want to remove the support for any architecture, for example, ARMv7-s in your case, use menu Project -> Build Settings -> remove the architecture from "valid architectures".

You can use this as a temporary solution until the library has been updated. You have to remove the architecture from your main project, not from the library.

Alternatively, you can set the flag for your debug configuration's "Build Active Architecture Only" to Yes. Leave the release configuration's "Build Active Architecture Only" to No, just so you'll get a reminder before releasing that you ought to upgrade any third-party libraries you're using.

share|improve this answer
10  
you don't have to recompile the library. you can remove this flag from the project that is using the library. – Nicholas Sep 13 '12 at 9:57
4  
It will work, since old apps that have not been compiled with armv7s support have to run as well. But you will loose some specific optimizations. This should be a temporary workaround anyway. – Nicholas Sep 13 '12 at 12:46
2  
Dropbox framework has been updated for this issue see forums.dropbox.com/topic.php?id=90014 – railwayparade Sep 17 '12 at 6:31
3  
Removing armv7s from the Valid Architectures list worked for me, however so did removing it from Architectures. In both cases, however, I would get No architectures to compile for (ARCHS=i386, VALID_ARCHS=armv7). from the linker which I could only solve by adding i386 to the Valid Architectures list. – levigroker Sep 18 '12 at 17:36
3  
No, armv7s is the instruction set of the A6 processor that is being used in the iPhone 5. Since the A6 is backwards compatible, it will still run the armv7 instruction set. – Nicholas Sep 20 '12 at 9:41
show 13 more comments

I've simply toggled "Build Active Architecture Only" to "Yes" in the target's build settings, and it's OK now!

share|improve this answer
6  
YOU SAVED MY LIFE ! BIG THANKS – Momi Sep 25 '12 at 21:19
this did the job.. – developersaremad Sep 26 '12 at 11:52
@Momi.... at your service!!! :D – Blasco73 Oct 1 '12 at 20:55
Solved my problem. Thanks!! – Venkat D. Oct 8 '12 at 15:51
4  
How can this be a good solution. It removes the error, but you only get build for the current arch, not all on the market... – esbenr Mar 21 at 9:57
show 7 more comments

Try to remove armv7s from project's "Valid architecture" to release from this issue for iOS 5.1 phone

share|improve this answer

I just posted a fix here that would also apply in this case - basically, you do a hex find-and-replace in your external library to make it think that it's ARMv7s code. You should be able to use lipo to break it into 3 static libraries, duplicate / modify the ARMv7 one, then use lipo again to assemble a new library for all 4 architectures.

share|improve this answer

Flurry Support for iPhone 5 (ARMv7s) As I mentioned in yesterday’s post, Flurry started working on a version of the iOS SDK to support the ARMv7s processor in the new iPhone 5 immediately after the announcement on Wednesday.

I am happy to tell you that the work is done and the SDK is now available on the site.

share|improve this answer
good info, thanks. – orion elenzil Sep 22 '12 at 23:30

If you've exhausted your options and nothing works, you can download an older version of xcode 4.4 or later if all you need to do is get a successful build/ archive. This does not solve the problem, it just merely bypasses it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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