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

XCode 4.2 Build 4D199 on Lion with iPhone 3G IOS 4.2.1

Project with Base SDK 5.0 and Target 4.2.

On this phone and on older iTouch the debugger never seems to startup. After pushing RUN the project compiles and then the Debug entry is in the Log Navigator with the Spinner Running. The spinner never stops and the app does not get loaded on the iPhone 3G.

Any clues on how to fix. This was working fine before the Lion Upgrade.

Need to test the older devices. Newer devices seem to work fine.

Device seems to be provisioned fine, etc.

share|improve this question

2 Answers

up vote 11 down vote accepted

Probably because armv6 is missing from the architectures for the Target.

Click on your Project in Xcode, then click on the Target. Double-click on 'Architectures', and delete what's current there - probably something like $(ARCHS_STANDARD_32_BIT) - using the '-' button. Next, click on the '+' button and add 'armv7', then add 'armv6'.

Hopefully, that should help.

share|improve this answer
Thanks for the advice, with the current version, it won't let me choose an armv6, but it does have an entry lower saying "Valid Architectures" and it lists armv6, armv7. Will get back, restoring the phone now to see if that helps. – ort11 Oct 17 '11 at 19:25
1  
Well, does not seem to work. iTouch 2G will not work with the debugger for some reason. Will neet to get this working soon.... – ort11 Oct 17 '11 at 20:19
This used to work on the developer preview releases of xCode 4.2 (which is why you will find this solution everywhere, even though at the time they were under NDA). However on the final release (Build 4D199) it no longer works. I think apple is hoping we all forget about the lowly iPodTouch 2nd Gen and iPhone 3G. But no big deal there's only millions of them out there. Right? – NJones Oct 18 '11 at 18:21
@ort11 - I can verify that this does work. I just did something similar (remove the existing architecture and manually add armv6 and armv7) to build and install an application on my iPhone 3G using the final stable version of Xcode 4.2. See this Apple Developer Forum thread for more: devforums.apple.com/message/507419 – Brad Larson Oct 20 '11 at 0:44
2  
@NJones - Yes, that's the build I'm running. Works fine here. Make sure that you don't have a target architecture setting that's overriding your project ones. If it helps, here is the project I tested this on, which should build and deploy to older devices as well as new ones: sunsetlakesoftware.com/sites/default/files/… – Brad Larson Oct 20 '11 at 3:09
show 3 more comments

I found when I would start a new project in xCode 4.2 (Build 4D199) it would not build to my iPod touch running 4.2.1. While I did have to set my architectures to include armv6, that alone did not do it.

In my project's Info.plist file xCode had set "Required device capabilities" to include 'armv7'. I removed that now everything is working fine.

I hope this helps someone else.

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.