This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / How to trace into function step by step using gdb?How to set line number ?
-wendywendy(wind);
2001-8-27
(#181149@0)
-
First, use "b <line_number>" to setup a break point, after running to that point (using "run"), use "s" or "n". To get line number, use "list". You might need to take a good look at gdb's document :-)
-dennis2(Dennis);
2001-8-27
(#181192@0)