vote up 9 vote down star
2

I teach a sort of "lite" C++ programming course to novices ("lite" meaning no pointers, no classes, just plain old C, plus references and STL string and vectors). Students have no previous experience in programming, so I believe that using an interactive debugger would help them understand program flow, variables, and recursion.

The course is taught in Linux. Teaching them to use gdb is just overkill (they will not use nor understand most features). I just need something simple but easy to use: to see at which line the program is now, what is in the stack (local variables, previous calls, etc.). I look something similar to old Turbo Pascal or Turbo C++ Borland's debugger, or Visual Studio debugger.

Thank you,

flag

11 Answers

vote up 4 vote down

ddd is a graphical front-end to gdb that is pretty nice. One of the down sides is a classic X interface, but I seem to recall it being pretty intuitive.

link|flag
vote up 4 vote down

You may want to check out Eclipse CDT. It provides a C/C++ IDE that runs on multiple platforms (e.g. Windows, Linux, Mac OS X, etc.). Debugging with Eclipse CDT is comparable to using other tools such as Visual Studio.

You can check out the Eclipse CDT Debug tutorial that also includes a number of screenshots.

link|flag
vote up 2 vote down

ddd

It's still probably overkill (I'm pretty sure any kind of debugger would be overkill given your description of the course...), but ddd is a fairly simple front-end for gdb.

http://www.gnu.org/software/ddd/

link|flag
vote up 2 vote down

Perhaps it is indirect to gdb (because it's an IDE), but my recommendations would be KDevelop. Being quite spoiled with Visual Studio's debugger (professionally at work for many years), I've so far felt the most comfortable debugging in KDevelop (as hobby at home, because I could not afford Visual Studio for personal use - until Express Edition came out). It does "look something similar to" Visual Studio compared to other IDE's I've experimented with (including Eclipse CDT) when it comes to debugging step-through, step-in, etc (placing break points is a bit awkward because I don't like to use mouse too much when coding, but it's not difficult).

link|flag
vote up 1 vote down

This might not be the best answer, but I would suggest you teach them only the gdb features that they really need to know. Being in industry now, I would have appreciated that back then....

Of course, the other option is to follow the curriculum your university has laid out. Give them the basics they'll at least need to get through the rest of their program.

link|flag
vote up 1 vote down

cgdb, a vim like front-end for gdb.

link|flag
vote up 1 vote down

Another vote for ddd! Not only is it a decent, free OSS graphical debugger, but it can gently introduce gdb itself. Some of your beginner students may end up wanting to delve deeper, and having a "magic door into the underworld" might actually entice them...

link|flag
vote up 0 vote down

ddd is indeed a good choice to start, specially if you are running on linux.

You can also go for Eclipse with the c++ plugin, which should run on linux/mac/windows. Another advantage of this approach is that they will play with the Eclipse platform.

link|flag
vote up 0 vote down

I've used KDBG under Linux before - it seems to be fairly good

link|flag
vote up 0 vote down

I've been in the situation, too many times, where we are porting our applications to multiple platforms and we do not have a toolset that comes with a nice IDE. Often times, it is left to the developer to fend for themselves and find the tools then need (to be productive). What tools are almost always available in a Unix/Linux environment:

  • gdb
  • vi/vim
  • emacs

Ignoring compilers.

I think that learning the basics with gdb will pay huge dividends over time for any working developer. Many of the heroes in the offices I have been in are the ones that understand how to navigate the program stack, jump between threads, and see what the program is doing.

GDB is an excellent tool to teach the basics of program execution, how to decode what is going on in your application, and then maybe, just maybe, find a bug. Of course if GDB and other debuggers were that good at helping us find bugs we would not have to result to the many other tricks required to solve program bugs. That said, if more programmers knew how to interactively get into their applications and see what was going on we would all save a lot of time.

link|flag
vote up 0 vote down

You may also use the integration of GDB within Emacs. You invoke it with M-x gdb. Then you can:

  • You may set a breakpoint directly in the buffer displaying your source code.
  • In the toolbar you have the usual Step into/Finish function/... operations.
  • you have access to the GDB command line.

You should be quite confortable with the Emacs user experience though.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.