Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does GCC have a GUI? [closed]

Does GCC have a GUI or Graphical IDE?

Edit:

I'm on Windows Vista /7 OR Ubuntu 9.10. I'm looking for something beginner-friendly. I've used Flash CS3 for 2 years and been doing HTML for 6. I have toyed briefly with Java and once or twice tried C++. I prefer working on Windows for now.

like image 556
Moshe Avatar asked Jan 01 '10 04:01

Moshe


2 Answers

Plenty. Just to name a few, in no particular order:

  • Eclipse

    Eclipse Screenshot

  • KDevelop

    KDevelop Screenshot

  • Anjuta

    Anjuta Screenshot

  • MonoDevelop

    MonoDevelop Screenshot

  • Code::Blocks

    Code::Blocks Screenshot

  • Qt Creator

    Qt Creator Screenshot

  • On Mac, Xcode

    Xcode Screenshot

  • On Windows, Dev-C++

    Dev-C++ Screenshot

  • Not real IDEs but still very popular development environments: Emacs, Vim

(As notnoop has noted, there is no official IDE but there are many standalone IDE applications that support targeting GCC)

like image 142
Tamas Czinege Avatar answered Sep 28 '22 12:09

Tamas Czinege


No. gcc is a compiler! There are many IDEs that use gcc underneath the hood.

The choice of the IDE is dependent on the language you desire. For Objective-C, pretty much the only supported IDE is XCode on Mac OS X. XCode is bundled with Mac OS X (at least available for free online).

like image 20
notnoop Avatar answered Sep 28 '22 10:09

notnoop