Which Windows C IDE can I use to use gcc to compile and let me insert breakpoints just like Visual Studio for C #?

Which Windows C IDE can I use to use gcc to compile and let me insert breakpoints just like Visual Studio for C #?

I searched Google and can't find anything more recent that 2005.

I will only return to C after graduation and would like to use not the MS IDE that uses GCC, but the universal one like Visual Studio.

The idea of ​​using the GDB command line is not very attractive right now.

+2


source to share


6 answers


I have used Eclipse with a C / C ++ plugin successfully. The thing is, I prefer this to VS. You can download it from here this is a real handsome man. If you are doing JNI this is simply irreplaceable as you can configure your project to run both C / C ++ and Java



+5


source


Dev-C ++ http://www.bloodshed.net/devcpp.html GPL License Uses GCC



+1


source


0


source


Code :: Blocks is another free C ++ IDE for Windows / Linux / MacOSX. GPL3 license.

0


source


I highly recommend the Insight Debugger , which is a lightweight Tk to GDB frontend from RedHat.

It adds a user-friendly graphical interface for calling stack display, breakpoints, clock and memory view (not an exhaustive list).

Like Tk, it supports GNU / Linux and Windows (and probably MacOS X). There is even a MinGW package for MinGW users to install it.

Once installed, just add a parameter -w

to the command line to launch the GUI:gdb -w

0


source


ddd

you can find it in the Develop menu.

-1


source







All Articles