I have breakpoints set but Xcode appears to ignore them.
|
|
|
First of all, I agree 100% with the earlier folks that said turn OFF "Load Symbols Lazily." I have two more things to add. My first suggestion sounds obvious, but the first time someone told me this I was on the verge of responding with "oh, come on, you really think I wouldn't know better...... oh."
There are a number of other properties under Target >> Get Info that might be affecting you. Look for things like optimizing or compressing code and turn that stuff OFF (I assume you are working in a debug mode, so that this is not bad advice). Also, look for things like stripping symbols and make sure that is also OFF. For example, "Strip Linked Product" should be set to "No" for the Debug target. |
|||||
|
|
Go to the Xcode Debugging preferences. Make sure that "Load Symbols lazily" is NOT selected. |
|||
|
See this post: Breakpoints not working in Xcode?. You might be pushing "Run" instead of "Debug" in which case your program is not running with the help of gdb, in which case you cannot expect breakpoints to work! |
|||
|
|
|
I was just having this same issue (again). After triple-checking "Load symbols lazily" and stripping and debug info generation flags, I did the following:
You can accomplish the same task in finder by right/option-clicking on the .xcodeproj bundle and picking "Show Package Contents". When I restarted Xcode, all of my windows had reset to default positions, etc, but breakpoints worked! |
|||||
|
|
I have a lot of problems with breakpoints in Xcode (2.4.1). I use a project that just contains other projects (like a Solution in Visual Studio). I find sometimes that breakpoints don't work at all unless there is at least one breakpoint set in the starting project (i.e. the one containing the entry point for my code). If the only breakpoints are in "lower level" projects, they just get ignored. It also seems as if Xcode only handles breakpoint operations correctly if you act on the breakpoint when you're in the project that contains the source line the breakpoint's on. If I try deleting or disabling breakpoints via another project, the action sometimes doesn't take effect, even though the debugger indicates that it has. So I will find myself breaking on disabled breakpoints, or on a (now invisible) breakpoint that I removed earlier. |
|||
|
|
|
I think the problem could be incompatibility between device versions and Xcode. I have this problem when attempting to debug on my iPhone 4S running iOS 5.0.1. I am still using Xcode 3.2.5. I got the symbols from the handset by selecting "use this device for development" in the Organiser window. This phone refuses to breakpoint however. My old 3GS will breakpoint, same Xcode project, same settings... just different device and it's running iOS 4.0. I guess this is an Xcode bug in 3.2.5, since I have the symbols. Having tried all the solutions posted here so far, I have decided the solution to my problem is to go ahead and upgrade to XCode 4. Perhaps you cannot debug effectively unless your base SDK is at least as high as the system on which to debug. Maybe that's obvious - can anyone confirm? Edit: I will update when I can confirm this is true. |
||||
|
|
|
For Xcode 4.x: Goto Product>Debug Workflow and uncheck "Show Disassembly When Debugging". |
|||
|
|
|
I haven't done Xcode in a bit, but I recommend that you disable "Zerolink" and "Load Symbols Lazily"; that will fix most problems. Zerolink is an abomination anyway. |
||||
|
|
|
In Xcode 4
|
|||
|
|
|
When setting your break point, right click and you should get several options about how the break point is handled (log vars and continue, pause execution, etc) Also make sure the "Load Symbols lazily" is not selected in the debug preferences. (Applies to Xcode 3.1, not sure about past/future versions) |
|||
|
|
|
I've had my breakpoints not work and then done Build / Clean All Targets to get them working again. |
|||
|
|
|
Also make sure that the AppStore distribution of the app is not also installed on the device. |
|||
|
|
|
Another thing to check is that if you have an "Entitlements" plist file for your debug mode (possibly because you're doing stuff with the Keychain), make sure that plist file has the "get-task-allow" = YES row. Without it, debugging and logging will be broken. |
|||
|
|
|
There appears to be 3 states for the breakpoints in Xcode. If you click on them they'll go through the different settings. Dark blue is enabled, grayed out is disabled and I've seen a pale blue sometimes that required me to click on the breakpoint again to get it to go to the dark blue color. Other than this make sure that you're launching it with the debug command not the run command. You can do that by either hitting option + command + return, or the Go (debug) option from the run menu. |
||||
|
|
|
I have Xcode 3.2.3 SDK 4.1 Breakpoints will fail at random. I have found if you clean the build and use the touch command under build they work again. |
|||
|
|
|
Here's an obscure one I've run into: if you're working on a shared library (or a plugin), your breakpoints will go yellow on startup, which might cause you to hammer your keyboard in frustration and kill the debug process. Well, don't do that! The symbols won't get loaded until the app loads the library, at which point the breakpoints will become valid. I ran into this problem with a browser plugin... BPs were disabled until I browsed to a page that instantiated my plugin. |
|||
|
|
|
I was facing the same problem when I wanted to debug a web plug-in where the custom executable was Safari 5.1. It was working fine till upgraded my Safari to 5.1 from 4.0.5. Once I installed Safari 4.0.5 again, all breakpoints started working without modifying any Xcode setting. |
||||
|
|
|
I believe that a project can also become corrupted in regards to breakpoints. I have a project, for example, that WILL NOT break on any breakpoints that it remembers from the previous session. I first wrote about this here |
||||
|
If you are using subversion, just revert your project files (only) to the last time you knew the debugger was working. |
|||
|
|
|
Just solved this in
And that's all, breakpoints are back again. Hope this helps. |
|||
|
|
|
Another reason the breakpoints can turn yellow is if the application binary you are debugging has been modified since it was first run. In my case, I added a folder to the application's Contents/Resources folder after having debugged the program once. On the debug run after adding the folder, the breakpoints turned yellow and were ignored. I modified my procedure: I did a clean, a build, added the folder, then ran, and all was well. Perhaps Xcode (or OS X) creates and remembers its own digital signature of the application (which was not digitally signed) and then, sensing that the application was modified, refuses to try to set breakpoints. By making my mods before the first (debug) run of the application, the digital signature was made with my mods. All this on OS X 10.6.8 using Xcode 3.2.2. |
|||
|
|
|
In case of Xcode 4 and later *Load symbols lazily* is seems to be dropped. So refer this post click here Simple and detailed explanation worked for me. |
|||
|
|
|
You can check one setting in target setting Apple LLVM Compiler 4.1 Code Generation Section Generate Debug Symbol = YES |
|||
|
|

