5 ms·
I love debugging, how do I go deeper in the art of debugging?
by JakobH 3y ago
I love debugging, how do I go deeper in the art of debugging?
- jackbracken 3y agoRelease more bugs
- wiz21c 3y agoper-bugging or re-bugging is the way
- mark_undoio 3y agoIf you use GDB, I recommend checking out the official documentation: https://sourceware.org/gdb/current/onlinedocs/gdb.html/ https://sourceware.org/gdb/current/onlinedocs/gdb.html/ It's quite hard work sometimes - there's a lot in there - but the capabilities available are amazing and it's well worth nosing around. I also recommend just hitting TAB a lot and seeing what commands are suggested. Then use the "help"command to find out more. My employer also hosts some articles that digest some knowledge we've gained into a more palatable form: https://undo.io/resources/gdb-watchpoint/ https://undo.io/resources/gdb-watchpoint/