Cheat Sheet

Revision as of 17:17, 17 May 2018 by Dmina (talk | contribs) (Gnu Debugger (gdb))

Gnu Debugger (gdb)

# Navigation
info functions
info variables
info scope <function name>

### debugging
# Set a breakpoint
break *_start

# Move forward / step
move
m
step
s