vote up 8 vote down star
1

What is the best C++ IDE for a *nix envirnoment? I have heard the C/C++ module of Eclipse is decent as well as Notepad++ but beyond these two I have no real idea. Any thoughts or comments?

flag

20 Answers

vote up 11 vote down check

On Ubuntu, some the IDEs that are available in the repositories are:

There is also:

  • Eclipse (Recommended you don't install from repositories, due to issues with file/folder permissions)
  • Code::blocks

And of course, everyone's favourite text-based editors:

  • vi/vim
  • emacs

Its true that vim and emacs are very powerful tools, but the learning curve is very steep..

I really don't like Eclipse that much, I find it buggy and a bit too clunky.
I've started using Geany as a bare-bones but functional and usable IDE. It has a basic code-completion feature, and is a nice, clean [Gnome] interface.
Anjuta I tried for a day, didn't like it at all. I didn't find it as useful as Geany.

Kdevelop and code::blocks get a bunch of good reviews, but I haven't tried them. I use gnome, and I'm yet to see a KDE app that looks good in gnome (sorry, I'm sure its a great program).

If only bloodshed dev-c++ was released under linux. That is a fantastic (but windows-only) program. You could always run it under Wine ;)

To a degree, it comes down to personal preference. My advice is to investigate Kdevelop, Geany and code::blocks as a starting point.

link|flag
If only Bloodshed Dev-C++ was released under Linux, all those fantastic console apps ending in system("PAUSE"); would crash. Then maybe someone would fix the need for that stupid, unportable hack. – system PAUSE Mar 23 at 22:24
vote up 0 vote down

KDevelop is nice, especially if you run KDE. It supports many languages, as an added bonus. I've found its embedded terminal really useful.

link|flag
vote up 0 vote down

I can't really vouch for the Eclipse module, but that might be attributed to the fact that I'm on Windows and have nearly no idea what I'm doing.

Can't go wrong with your favorite text editor though.

link|flag
vote up 3 vote down

I just use Emacs.

link|flag
vote up 9 vote down

As a programmer who has been writing code under linux for many years, I simply cannot seem to move away from using Vim for writing code.

Once you learn it, and learn some of its more advanced features (Code Folding, how to use ctags, how to work with multiple buffers effectively, etc) moving to another editor is very hard - as everything else seems to be missing features that you're used to.

The only other editor with a superset of vim's features is emacs. I highly recommend learning one or the other - and if you have questions, don't hesitate to ask here or in #emacs or #vim on irc.freenode.net - there's a very large and helpful community that will help you learn what extensions or commands best suit the software editing problems that you're facing.

[Edit: A comment noted that "vim isn't an IDE", I agree. I don't like the IDE moniker because it means a gui with a project manager and a bunch of drop down boxes. I like to use the terminology "Good Tools". See Ted Leung's writings on the matter]

link|flag
I agree. I personally use vim. but I wouldn't call it an IDE, it doesn't feel like one. Feels better than one though :) – Vinko Vrsalovic Sep 17 '08 at 2:25
But don't you feel you sacrifice some of the functionality that IDE's implement by using vim? For example within those many drop down menus there are functions such as refactoring code naming conventions across hundreds of files, how could this be done with a utility such as vim? – Mike Sep 17 '08 at 2:38
Vim has its own scripting language, plus the ability to write scripts in a variety of scripting languages such as python, perl, ruby and lua. See here for an example: vim.wikia.com/wiki/… – Jerub Sep 17 '08 at 3:56
Vim is great but..I actually switched from vim to emacs for most text editing. It seems to have more features. However, since emacs has a learning curve, I still use CodeBlocks for C++. CodeBlocks has crashed a couple of times on me so I'll probably switch. – User1 Jul 18 at 18:48
vote up 1 vote down

Netbeans has gotten some pretty good reviews for its C++ support: http://www.netbeans.org/features/cpp/

I've never used Netbeans or Eclipse for C++ development, but it's worth looking at.

link|flag
vote up 1 vote down

I really like CodeLite. Check out it's feature page.

link|flag
vote up 2 vote down

Emacs is a fantastic, stay-out-of-my-way-but-be-able-to-do-everything kind of IDE. See this other related question: Using Emacs as an IDE

link|flag
vote up 5 vote down

I would recommend CodeBlocks.

Highlights:

  • Open Source! GPLv3, no hidden costs.
  • Cross-platform. Runs on Linux, Mac, Windows (uses wxWidgets).
  • Written in C++. No interpreted languages or proprietary libs needed.
  • Extensible through plugins

Compiler:

  • Multiple compiler support:
    • GCC (MingW / GNU GCC)
    • MSVC++
    • Digital Mars
    • Borland C++ 5.5
    • Open Watcom
    • ...and more
link|flag
vote up 0 vote down

I asked this question before to experience Linux users and they always say Vim and automake. I use Vim as my default editor in Linux and after a while it becomes intuitive. I learned it by working through some small examples while learning C++ so I could learn both at the same time.

link|flag
Saying 'automake' makes me sad. :( I don't say automake, I don't hate you. – Jerub Sep 17 '08 at 2:44
vote up 0 vote down

Personally, I agree with the kDevelop crowd as well. Eclipse felt a bit bulky and mildly unstable. Something about kDeveloper just always feel right.

link|flag
vote up 0 vote down

Eclipse isn't bad, but you have to do things Eclipse's way. Eclipse has some built in ideas on directory layout. For a new project, Eclipse is a reasonable choice. Importing an existing project into Eclipse may require some restructuring.

I used to use Eclipse under QNX for C++. The QNX people actually developed the C++ capability, so QNX would have an IDE.

link|flag
vote up 0 vote down

My vote is KDevelop (I wish I had more points so I can "vote up", so I could just agree with others indirectly than comment).

I've been using Eclipse for about couple years now for personal use, convincing myself that "since IBM donated it, it must be good", but then I've discovered KDevelop and never turned back. Because I'm quite spoiled with Microsoft Visual Studio for professional use, thus KDevelop felt the most comfortable to me.

I want to enjoy programming as a hobby, not spend time looking up what ctrl-k-k and ctrl-k-b does. Like others has mentioned, whatever "feels right" to them is the best IDE. For me, KDevelop feels the most comfortable because I can concentrate on coding (I could probably remap the keys to other IDE's to make it feel like VS, but as mentioned, I rather invest my time coding, which is more fun).

link|flag
vote up 1 vote down

If you're coming from Windows & Visual Studio, you might find Code::Blocks meets your expectations.

That was my experience; I tried a few others first, but they all seemed to expect me to do a lengthy tutorial before I could start doing anything interesting - and with a dozen IDEs to try, that could take days.

With Code::Blocks there were no hoops to jump through, and very little mandatory cruft to learn before I could be productive. I still prefer Visual Studio, but Code::Blocks can open my Visual Studio projects, and it doesn't seem to want me to waste any time, so it's the winningmost *nix IDE for me.

link|flag
vote up 0 vote down

At my old job we used SlickEdit for C++ development under Debian. It's cross-platform and quite powerful.

It's not free, though.

link|flag
vote up 1 vote down

I use the NetBeans C++ plugin and it's superb. I come from a Visual Studio background and the Netbeans project management is very similar. I tried KDevelop but found it a little flaky (this was 12 months ago, so it is probably better now).

I also struggled with dependencies using KDevelop - i.e. where a program requires a raft of libs to be built first - but Netbeans made this simple.

The only complaint is that being a Java app, it isn't particularly fast - very noticeable when running under VMWare.

link|flag
vote up 1 vote down

I was a VisualStudio + VA-X user before I switched to ubuntu, and needed good auto completion and function navigation features in any IDE.

I have tried Netbeans,Eclipse CDT,CodeBlocks,Geany,Anjuta, KDevelop and finally settled for KDevelop since that was the closest I could get to VS+VA-X.

Eclipse & NetBeans are too heavy & sluggish for my taste. Most of the other IDEs have buggy/incomplete/dumb auto completion & other features; or they want to take control of your code and needs to be imported into projects; or they put 101 files in your source folder. Only KDevelop allowed me to have a simple link to my src folder and let me work. auto completion is not brilliant, but better than the others.

KDevelop doesn't blend well with my Gnome, but I can live with it ;)

link|flag
vote up 1 vote down

Ultimate++ [http://www.ultimatepp.org/index.html]

(but only if you are serious about programming!)

link|flag
vote up 0 vote down

Emacs works for simple things but I use Eclipse for any larger project.

link|flag
vote up 0 vote down

Simply put, Netbeans. You have to try it out. It's so good. It's much better than Eclipse with the CDT plugin.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.