Skip to content

Rough reading of debugging in gdb chapter 9

9.1 Printing Source Lines

主要讲述 gdb 显示源代码的问题,以及 list 命令显示源代码的使用。

9.2 Location Specifications

主要讲 gdb 中地址的解析方法,在 gdb 中打断点的等操作的时候都会用到地址,因此地址的解析十分重要。这一小节给出地址解析的相关内容,并且介绍如何指定详细的地址。

9.3 Editing Source Files

主要讲在 gdb 中如何编辑源文件。

9.4 Searching Source Files

主要讲如何找到源文件。

9.5 Specifying Source Directories

主要讲如何指定源文件存在的目录。

9.6 Source and Machine Code

主要讲如何反汇编得到机器码。

9.7 Disable Reading Source Code

主要讲 gdb 中如何禁用对源代码的查看。