Beej's Quick Guide to GDB (2009)
1–10 of 29 posts
Re: Beej's Quick Guide to GDB (2009)
#2Re: Beej's Quick Guide to GDB (2009)
#3Re: Beej's Quick Guide to GDB (2009)
#4Re: Beej's Quick Guide to GDB (2009)
#5Beej’s guides are great! He does a fantastic job of describing concepts and showing implementations. I also recommend his networking guide: https://beej.us/guide/bgnet/html/single/bgnet.html
Re: Beej's Quick Guide to GDB (2009)
#6I never knew gdb had a tui mode. It is not even specified in the man page as an option.
Re: Beej's Quick Guide to GDB (2009)
#7I never knew gdb had a tui mode. It is not even specified in the man page as an option.
The manual is worth a read. This is a software (as gcc) in which the "man" page or the information displayed with "--help" is not near the bunch of things there are described in the complete documentation.
Re: Beej's Quick Guide to GDB (2009)
#8Beej’s guides are great! He does a fantastic job of describing concepts and showing implementations. I also recommend his networking guide: https://beej.us/guide/bgnet/html/single/bgnet.html
Re: Beej's Quick Guide to GDB (2009)
#9That is usually my default workflow. The debugger (client and frontend) run on my desktop box while the app is running under gdbserver on an ARM board on the network.
The other day I was debugging a Windows game on my Linux laptop, editing in vim, compiling with x86_64-w64-mingw-clang and gdbserver running on my desktop PC. Not the most comfortable development environment but sure as hell beats learning another debugger and installing dev tools on Windows.