gdb debugger
gdb debugger
GDB stands for GNU Project Debugger. GDB(GNU Debugger)是UNIX及UNIX-like下的強大調試工具,可以調試ada, c, c++, asm, minimal, d, fortran, objective-c, go, java,pascal等語言。本文以C程序為例如,介紹GDB啟動調試的多種方式。
- Compile your code with debugging option
Launch gdb
In general, it is 1
gdb ./wrf.exe
1
mpirun -n 1 gdb ./wrf.exe
Sample output, 1
2
3
4
5
6
7
8
9
10
11GNU gdb (GDB) Red Hat Enterprise Linux 7.6.1-110.el7
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-redhat-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /xxx/WRFV4.4_debug/main/wrf.exe...done.
(gdb)
commands
Here are few useful commands to get started with gdb for the above example: 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15run or r –> executes the program from start to end.
break or b –> sets breakpoint on a particular line.
disable -> disable a breakpoint.
enable –> enable a disabled breakpoint.
delete -> delete a breakpoint by index 1,2,3,...
next or n -> executes next line of code, but don’t dive into functions.
step –> go to next instruction, diving into the function.
list or l –> displays the code.
print or p –> used to display the stored value.
quit or q –> exits out of gdb.
clear –> to clear all breakpoints.
continue –> continue normal execution.
reverse-next -> Run the program backward
reverse-step -> Run the program backward
reverse-continue -> Run the program backward
movement
1 |
|
Single step execution -next
The next command (can be abbreviated as n) is used to continue to execute the next statement after the program is stopped, assuming that debugging has been started, and stop at line 10, if you want to continue execution, use n to execute the next statement, if later Keeping up with the number num, it means that the instruction is executed num times, and the effect of continuing to execute n lines is achieved.
1 |
|
Step into -step
For the above situation, if we want to track the internal situation of the function, we can use the step command (which can be abbreviated as s), which can single-step trace to the inside of the function, but only if the function has debugging information and source code information.
core document
When a program core dumps, a core file may be generated, which can help us identify location problems for a large enough program. But it was proposed before that the system does not limit the generation of core files. You can use the command limit - c to view: 1
2
3$ ulimit -c
0
$ ulimit -c unlimited # Indicates that there is no limit to the core file size
check breakpoints
1 |
|
set breakpoints
1 |
|
Generate breakpoints based on expression value changes
Sometimes we need to observe a certain value or expression to know when it has changed. At this time, we can use the watch command. For example: 1
$ watch a
1
2
3Hardware watchpoint 2: a
Old value = 12
New value = 11
TUI(Text User Interface)
The GDB Text User Interface, TUI in short, is a terminal interface which uses the curses library to show the source file, the assembly output, the program registers and GDB commands in separate text windows. 1
$ gdb main -tui
command.
frame
- According to the stack frame number or stack frame address, select the stack frame to be viewed. The syntax format is as follows: > (gdb) frame spec
- With the help of the following command, we can view the information stored in the current stack frame: > (gdb) info frame
backtrace/bt
backtrace
The command is used to print the information of all stack frames in the current debugging environment
Step out of current function with GDB
You can use the finish command. > finish: Continue running until just after function in the selected stack frame returns. Print the returned value (if any). This command can be abbreviated as fin.
Reserse
1 |
|
Example: WRF
1 |
|
Inferior 1 (process ) exited normally
That is not an error, from gdb's point of view. Your program just finished gracefully, with a return value of 0, and gdb informs you of that.
What does no stack mean in gdb?
Missing separate debuginfos, use: debuginfo-install cyrus-sasl-lib-?
- Install debuginfos
- $ debuginfo-install glibc