Is there an open visual C debugger for open windows?

Is there an open source visual debugger for Windows? I heard about the visual free version of C ++ express, but does it have a visual debugger?

Thanks.

+6
c debugging windows
source share
6 answers

This is not open source (but should it really be?) Visual C ++ 2008 Express Edition is an IDE with a built-in debugger.

You can create a C ++ project, delete .cpp files and create / include your .c files.

+7
source share

Eclipse CDT is a good alternative. It also has some great features, such as refactoring and macro preprocessor explorer.

+5
source share

I found a statement that the DDD debugger will run on Windows under Cygwin . I used DDD quite a bit and love it.

+2
source share

Check out the CodeLite IDE. I could connect to gbb debbager and provide a graphical interface for it.

0
source share

Visual Studio is the standard for Windows development. I have never seen a better IDE for this platform (or any other for that matter).

If the IDE has a built-in debugger. Try it — you'll probably enjoy it.

0
source share

I use Insight , which is the GUI for GDB in combination with mingw (gcc).

You can also use Code :: Blocks , which has an integrated debugger interface (I only tried it with gcc / gdb, but it should work with other compilers / debuggers).

If you do not mind that they are not Open Source (but simply free to use), you can look at " Pelles C " (for Windows and Windows Mobile) and " lcc-win32 " based on lcc .

Of course, Microsoft's already proposed Visual C ++ Express works fine on Windows.

0
source share

All Articles