GDB调试教程

GDB是linux开发人员必学的调试工具,说白了,在Linux下面也没有其他的调试器了……。

这几天在看编译原理,书上有一个c语法的编译器,是linux下面的,看书看的一脸懵,所以准备单步调试来学习,没办法,首先学了一下GDB。

下面是整理的一些GDB调试教程:

1.GDB 简介

http://www.thisisgame.com.cn/gdb/gdb-tutorial.html

2.GDB 调试常用命令

http://www.thisisgame.com.cn/gdb/gdb-command.html

3.GDB 调试程序

http://www.thisisgame.com.cn/gdb/gdb-debug.html

4.GDB 设置程序参数

http://www.thisisgame.com.cn/gdb/gdb-debug-set-args.html

5.GDB 查看变量值

http://www.thisisgame.com.cn/gdb/gdb-debug-get-var.html

6.GDB 查看数组内容

http://www.thisisgame.com.cn/gdb/gdb-debug-get-array.html

7.GDB 单步调试

http://www.thisisgame.com.cn/gdb/gdb-debug-next.html

8.GDB 进入、退出函数

http://www.thisisgame.com.cn/gdb/gdb-debug-stepin-stepout.html

9.GDB 指定文件设置断点

http://www.thisisgame.com.cn/gdb/gdb-breakpoint-to-file.html

10.GDB 查看函数调用堆栈

http://www.thisisgame.com.cn/gdb/gdb-callstack.html


GDB 调试实例

1.GDB 调试实例 (1)

http://www.thisisgame.com.cn/gdb/gdb-debug-normal-tutorial.html

你可能感兴趣的:(综合)