Debugging Tips
From qtnode
Debugging Quick primer:
- gdb myprogram.exe (gdb ./myprogram if you're on linux)
- "start"
- "continue" if it ever stops to load a shared library
- "bt" to get the backtrace after it crashes
- "quit" when you're done
Actually, I think the Windows GDB uses "run" instead of "start"