0

Possible Duplicate:
Does GCC have a GUI?

I've downloaded MinGW and I require an IDE for compiler. I'm going for eclipse atm, which one would you suggest?

Community
  • 1
  • 1
user15353
  • 325
  • 1
  • 4
  • 10

6 Answers6

2

Eclipse is good.

Netbeans is good.

DevC++ is good.

Now you choose :-)

Federico klez Culloca
  • 26,308
  • 17
  • 56
  • 95
2

Eclipse is quite good, haven't tried any other IDE so can't comment further

hhafez
  • 38,949
  • 39
  • 113
  • 143
2

QtCreator also has a lot of nice capabilities.

I would avoid Dev-C++ because the compiler is horribly outdated, and it has been dead for a long time

rubenvb
  • 74,642
  • 33
  • 187
  • 332
1

I have used DevC++ and I have heard good words for Code::Blocks.

thkala
  • 84,049
  • 23
  • 157
  • 201
0
  • Emacs along with ECB is good!
  • Eclipse along with CDT is fine!
ZeroCool
  • 1,490
  • 4
  • 19
  • 33
0

Visual Studio supports choosing your own compiler and build system, so it should work with gcc, but I haven't used the combination myself.

Community
  • 1
  • 1
reinierpost
  • 8,425
  • 1
  • 38
  • 70
  • This is shooting yourself in the foot: there would be no debugging, error on lineXX->source click shortcut etc... not a good idea. Every other IDE has more support for GCC IMHO. – rubenvb Jan 18 '11 at 14:53
  • OK ... good to know. Still VS can serve as a smart viewer for your code base. – reinierpost Jan 18 '11 at 19:46