I just updated Xcode to version 4.3 via the Mac App Store last week, and discovered that I can no longer debug on iOS 3.x devices. I have the iPhone 3G running iOS 3.1.3 and a 1st Gen iPad running iOS 3.2.

On both devices it appears that Xcode 4.3 installs the app and attempts to launch the app. The app displays the splash screen but never completes booting. There are no error messages or messages of any kind in the debugger output window. My only clue is when I press the pause button I can see that the device/Xcode is stuck in the following function: addimagesToAllImages which appears to be related to Apple's DYLD.

Debugging works fine on iOS 5 devices and worked on the previous Xcode 4.2 installation. I've rebooted my Mac, iOS 3.x devices with no change in behavior including clearing out all cache(s).

Anyone have any ideas as to what's going on? Thanks for the help.

link|improve this question
it looks like XCode 4.3 force the Compiler to LLVM 3.1 and the debugger to lldb that is not supported on iOS 3. Have you checked that the project is still compiling with LLVM GCC? – Junior B. Feb 20 at 16:03
Thanks Junior B. I changed the Build Option "Compiler for C/C++/Objective-C" to "LLVM GCC 4.2" and still see the same problem. Is there another setting I need to change to get xcode using GCC and/or the GDB debugger? – Wesley Filleman Feb 20 at 16:30
Ok, I figured it out with Junior B's hint about the debugger. I went to "Manage Schemes" and selected the Scheme I'm working on and clicked "Edit". Under the "Run" section I changed the Debugger from LLDB to GDB. Now debugging on iOS 3.x and 5.x devices work fine. Also, I left the compiler to xcode 4.3's preferred setting of LLVM 3.1. – Wesley Filleman Feb 20 at 17:06
Usefull info about 3.x support can be found here: stackoverflow.com/q/6075161/751932 – Speakus Mar 14 at 23:24
Usefull info about 3.x support can be found here: stackoverflow.com/q/6075161/751932 – Speakus Mar 14 at 23:26
feedback

3 Answers

up vote 9 down vote accepted

Ok, I figured it out with Junior B's hint about the debugger. I went to "Manage Schemes" and selected the Scheme I'm working on and clicked "Edit". Under the "Run" section I changed the Debugger from LLVM to GDB. Now debugging on iOS 3.x and 5.x devices work fine. Also, I left the compiler to xcode's preferred setting of LLVM 3.1.

Hopefully this helps someone else that accepts xcode's upgrade adviser recommended settings and their iOS 3.x debugging breaks.

link|improve this answer
feedback

Have you installed the “iOS 3.0 - 3.2.2 Device Debugging Support” component?

From the menu bar, choose Xcode > Preferences…, then in the Preferences window choose Downloads > Components. Find the line for iOS 3.0 support and click the Install button.

link|improve this answer
Hi Rob, thanks for the response. Yes, iOS 3.0 - 3.2.2 Device Debugging Support is installed. Just for kicks I installed the 4.0 Device Debugging Support as well with no change in behavior. – Wesley Filleman Feb 19 at 22:29
feedback

Hai MyDear Friends,

   I am having one simple solution as follows:

"Xcode --> Preferences --> Debugger --> check Auto clear Debug console" results clears the console every time You run the Application

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.