Debug compiled CygWin gcc programs using Visual Studio 2008

Is it possible to debug programs hosted on Windows compiled by cygwin gcc using the Visual Studio debugger?

+6
gcc debugging visual-studio-2008
source share
2 answers

Not really - the debugging formats of the GCC and MS compiler are different. You should be able to use the MS debugger in machine code mode, but you will not see all class names and variables, etc.

If you want to use the MS debugger because you find that gdb is too intimidating, you can get a pretty nice GUI for it at http://sourceware.org/insight .

+3
source share

cygwin has gdb - use this.

+1
source share

All Articles