M-x gdb
run
break xxx
continue
step (step in the function)
next (step over the function)
where (check the stack)
list xxx
在emacs中使用gdb好好处是break时可以再emacs的另一个窗口中显示目前的代码。
(To be coninued ...)
本文共 235 字,大约阅读时间需要 1 分钟。
M-x gdb
run
break xxx
continue
step (step in the function)
next (step over the function)
where (check the stack)
list xxx
在emacs中使用gdb好好处是break时可以再emacs的另一个窗口中显示目前的代码。
(To be coninued ...)
转载于:https://my.oschina.net/u/158589/blog/55164