sh gdb快速入门

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh gdb快速入门相关的知识,希望对你有一定的参考价值。

#compiling with symbols
-g -O0 # or dont specify -O option at all

# run command with gdb attached
gdb --args <command> <arg1> <arg2> ...

#navigation
next (n)
continue (c)
step <stepin>
fin (stepout)
until <location>

#stack frame /call stack navigation
f <# of frame>
up
down

#printing
p <var name>
p *array@len
x/<len>w array

#breakpoint on variable change
watch <expression>

#execute command when break point hit
breakpoint <regular breakpoint syntax>
command
<commands to exexute>
end

#stepping over a loop
u/until (hit until when on the loop decleration)

以上是关于sh gdb快速入门的主要内容,如果未能解决你的问题,请参考以下文章

代码调试篇:gdb调试快速入门指南

shell编程快速入门

Shell 编程基础 --语法快速入门

shell变量快速入门

gdb mi接口命令入门大全

Linux gdb调试入门