I have an issue with xCode 4.2. I am getting this error when building:

2011-06-18 13:35:49.839 Validation[4110:607] *** Warning: Defaulting to the standard codesign tool
warning: iPhone/iPod Touch: application executable is missing a required architecture.  At least one of the following architecture(s) must be present: armv6 (-19033)
Unable to validate your application. - (null)

I had a look at my project settings, and it has :

architectures: Standard (arm7) - ${ARCHS_STANDARD_32_BIT)
Build active architecture only : NO

Not sure what

link|improve this question

75% accept rate
feedback

5 Answers

For some reason the default architecture settings with xCode 4.2 is only for armv7. Go to Target -> Build Settings -> Architectures -> Release on value dropdown pick "Other...",

remove $(ARCHS_STANDARD_32_BIT), and add 2 rows first with "armv6" and second "armv7"
Done

link|improve this answer
Awesome... this problem was killing me. It was actually preventing my app from deploying on an iPhone 3G (iOS 4.2 for example). Made this change and now it totally works! Thanks! – Simeon G Oct 7 '11 at 2:27
Thank you, Man! – berec Oct 8 '11 at 18:17
1  
Note: in some cases, deleting the old setting does not work. Simply adding "armv6" should do the trick, the end result being displayed for Architecture: "armv6 $(ARCHS_STANDARD_32_BIT)" – brack Oct 18 '11 at 22:33
Awesome, thanks for your help! – Jack Humphries Nov 12 '11 at 3:19
OMG, that saved me. Thank you!!! – Eliseo Chavez Jr. Nov 19 '11 at 6:25
show 2 more comments
feedback

Not the optimal solution, but I found that if I changed the Deployment Target to 4.3 (it was 4.0 before) it gets rid of the error.

link|improve this answer
feedback

My previous answer was deleted by the moderator because I didn't comply with their rules. So, answering again.

I faced the same issue and wasted 2 days on it. In my case an upgrade to XCode caused it. I downgraded XCode to the previous version and it got fixed for me. If this is your issue then uninstall new version, reboot and then install old version again. That should do it for you.

I have also added some screenshots and info to my blog about this issue here: http://iostipsntricks.wordpress.com/2011/06/24/solved-application-executable-is-missing-a-required-architecture-at-least-one-of-the-following-architectures-must-be-present-armv6/

link|improve this answer
feedback

Had absolutely the same problem with Xcode Version 4.2. and got also an other error:

There is no codesign:wrapper executable. Please reinstall the Xcode developer tools.

After downgrading the Xcode to an older version it fixed the problem.

link|improve this answer
feedback

Check this post, it is the right one with just adjust a setting in Xcode 4.2, just set "Build Active Architecture only" to NO:

iTunes Connect application is missing required architecture

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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