Common gdb commands Flashcards
1
Q
Run
A
execute the program
2
Q
Break
A
set a breakpoint-a place for the program to sotp
3
Q
Next
A
Run until the next instruction in this function (don’t follow function calls)
4
Q
Step
A
Stop at the next instruction call anywhere (goes into function calls)
5
Q
Continue
A
run until the next breakpoint
6
Q
A
show the value of a variable
7
Q
Jump
A
Start executing at a different line number
8
Q
enable/disable
A
turn breakpoints on or off