欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

GDB: Linux command line环境下的debugger cmd

程序员文章站 2022-05-08 16:55:32
...

调用

//enable
g++ fileName [format] -std=c++0x [enable gdb]-g
//invoke
gdb newCreateFileName
//running
//单参/带参都可以
run par1 par2
//OR
newCreateFileName par1 par2

show values

print expression1
//OR
display expression1

关键字讲解

continuen: 跳出当前循环继续运行
where
up
down
Describe

相关标签: cmd