Cheat Sheet
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
# Navigation
info functions
info variables
info scope <function name>
### debugging
# Set a breakpoint
break *_start
# Move forward / step
move
m
step
s