vote up 1 vote down star

Hello!

My problem is that I set some breakpoints in my code and some of them aren't working. In some places it complains about "Unresolved Breakpoint".

Does anyone have any clue why this is happening?? I am using gdb, by the way.

EDIT: Yes, of course is compiled with debug information. It only happens at some classes or points in the code. And I am pretty sure that that part of the code is reached because I can reach it stepping

EDIT: Neither the solution from Richard works, thaks anyway. I am compiling in Debug, without any optimization.

flag

73% accept rate
Are you setting the breakpoints on 'real' code lines? By that, I mean executable code rather than, say, a line containing nothing but a brace. – paxdiablo Oct 15 '08 at 11:57
1  
this happens to me as well all the time; in general the debugger from Eclipse CDT is very unreliable unfortunately – UncleZeiv Feb 12 at 15:21

3 Answers

vote up 1 vote down

Check if your executable is compiled with debug information.

link|flag
vote up 1 vote down

"Unresolved Breakpoint" just means that GDB did not find code location corresponding to the file and line on which you attempted to set a breakpoint.

Are you trying to stop in a constructor?

If so, you are likely seeing this cently fixed GCC bug.

link|flag
vote up 1 vote down

Could it be that you are trying to set breakpoints in a shared library that has not been loaded yet. That won't work until the library has loaded. Newer gdb allow to set deferred breakpoints, but that may not (yet) be supported by CDT. A workaround is to set a breakpoint in a place that is available from the beginning that will be reached when the shared library in question is already loaded. Then set the other breakpoint in the shared library. Now it should work. It's a bit more tedious, but usually works.

From the GDB documentation:

For a pending breakpoint whose address is not yet known, this field will contain 'PENDING'. Such breakpoint won't fire until a shared library that has the symbol or line referred by breakpoint is loaded.

link|flag

Your Answer

Get an OpenID
or

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