|
From: Eli Z. <el...@gn...> - 2015-04-03 20:54:09
|
> Date: Fri, 03 Apr 2015 19:32:46 +0100 > From: John Pote <joh...@o2...> > > I recently had a bug that took a lot of edit, add printfs, compile, run > loops before I tracked it down. (forgot to set a flag). This was all > done from a Windows command prompt window and would have been a lot > quicker if I'd had a good debugger. Any suggestions for a good GUI based > debugger to work with the MinGW compiler would be much appreciated. Obviously, GDB is the first candidate. If you want a UI other than the default command line, you could try 2: (a) the TUI interface, which is just a text-mode full-screen windowed UI based on curses; and (b) Emacs, which has a GUI front-end for GDB. |