how to debug functions called from other classes
Jim Blandy
jimb@red-bean.com
Sun Dec 11 20:09:00 GMT 2005
On 12/11/05, Grazia Russo-Lassner <glassner@umiacs.umd.edu> wrote:
> my question is how tobe able to step into BuildVcb.
> So far when I "step" the entire output of BuildVcb gets printed out.
So, when the program reaches the line containing the call of the
BuildVcb method, and you type "step", GDB acts as if you had typed
"next" or "continue"?
If you ask GDB to "step" into a function or method that has no
debugging information, GDB will do a "next" instead. Did you compile
the file that contains the definition of the BuildVcb method with -g?
More information about the Gdb
mailing list