up vote 1 down vote favorite
share [g+] share [fb]

How can I debug a MinGW EXE with the Microsoft Visual C++ debugger?

link|improve this question
feedback

1 Answer

You can attach the Visual C++ debugger to any process running on the system (from the Visual C++ menu). But for being able to step through your source code Visual C++ would have to load the symbol file (.pdb if I remember correctly) and I don't think GCC generates those files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown