Re: Breakpoints
Re: Breakpoints
- Subject: Re: Breakpoints
- From: Chris Espinosa <email@hidden>
- Date: Fri, 15 Jan 2010 14:55:48 -0800
On Jan 15, 2010, at 2:32 PM, David Blanton wrote:
> Suddenly, my break points ar enot being hit. They show up in the break points window, an NSLog message in the method I want to break on shows in the console but the break point is not being hit. It is dark blue (enabled).
>
> What is the meaning of an orange break point?
An orange breakpoint means that the code at the point of that breakpoint has not yet been loaded, or (more commonly) the symbol file for that code is not available.
Step 1: Xcode > Preferences > Debugging, Symbol Loading Options. Uncheck "Lazy Symbol Loading". This clears up 90% of cases.
Step 2: Make sure you built your Debug configuration (with debug symbols) and that your breakpoints are enabled (choose Run > Debug).
Step 3: If those don't work, Project > Edit Active Target, choose Debug configuration, and type "Symbols" into the filter bubble. You should be using DWARF with dSYM symbols.
Chris _______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
References: | |
| >Breakpoints (From: David Blanton <email@hidden>) |