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