up vote 135 down vote favorite
112
share [g+] share [fb]

I want to expand my programming horizons to Linux. A good, dependable basic toolset is important, and what is more basic than an IDE?

I could find these SO topics:

I'm not looking for a lightweight IDE. If an IDE is worth the money, then I will pay for it, so it need not be free.

My question, then:

What good, C++ programming IDE is available for Linux?

The minimums are fairly standard: syntax highlighting, code completion (like intellisense or its Eclipse counterpart) and integrated debugging (e.g., basic breakpoints).

I have searched for it myself, but there are so many that it is almost impossible to separate the good from the bads by hand, especially for someone like me who has little C++ coding experience in Linux. I know that Eclipse supports C++, and I really like that IDE for Java, but is it any good for C++ and is there something better?

The second post actually has some good suggestions, but what I am missing is what exactly makes the sugested IDE so good for the user, what are its (dis)advantages?

Maybe my question should therefore be:

What IDE do you propose (given your experiences), and why?

link
show 3 more comments
feedback

locked by Jeff Atwood Sep 29 '11 at 10:40

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ(/faq).

45 Answers

1 2

I prefer using Emacs and Vim for writing C++ code. When I need to use an IDE, I use CodeBlocks.

link
feedback

I have been using Anjuta for my university projects about 3 years ago. I haven't been using it lately. But it was nice back then, so should be better with the latest releases.

link
show 1 more comment
feedback

Konrad's advice is excellent, and you should become happily productive in a classic vi/cc/ld/db/make environment without too much trouble. Many, many university students have learned this toolchain over the course of a 10-15 week class.

That said, the other classic environment is to go the Emacs route. I wouldn't call it an IDE, but it does integrate two important development tools into the editor: the compiler's output, and the debugger. You can have it zip you to the line in the file corresponding to a compiler error, and you can set breakpoints and use the stepper from the editor.

link
feedback

I like SciTE as a basic editor for C++/Python on Linux. It has keyboard bindings similar to VC so you do not have to reprogram your cut-and-paste fingers.

I use it together with Git for source code control and the very useful 'git grep' command for searching in your code base.

I played with Eclipse CDT but my source codebase was to big for it and I spend too much time waiting on the IDE. If your project is smaller it may be good for you though.

link
feedback

Use Mono-Develop. It is very similar to Visual Studio. It works cross-platform and is Awesome!!

link
feedback

I love how people completely miss the request in the original question for an IDE. Linux is NOT an IDE. That's just not what those words mean. I learned c and c++ using vi and gcc and make, and I'm not saying they aren't adequate tools, but they are NOT an IDE. Even if you use more elaborate tools like vim or emacs or whatever fancy editor you want, typing commands on a command line is not an IDE.

Also, you all know make exists as part of visual studio right? The idea that an IDE is "limiting" is just silly if you can use the IDE to speed some things, yet are still able to fall back on command line stuff when needed.

All that said, I'd suggest, as several above have, trying Code blocks. Its got decent code highlighting, a pretty effortless way to create a project, code it, run it, etc, that is the core of a real IDE, and seems fairly stable. Debugging sucks...I have never seen a decent interactive debugger in any linux/unix variant. gdb ain't it. If you're used to visual studio style debugging, you're pretty much out of luck.

Anyway, I'll go pack my things, I know the one-view-only linux crowd will shout this down and run me out of town in no time.

link
feedback

vim editor + g++ compiler(GNU C++) + gdb - might help you

link
feedback

I'm glad you seem to be working it out with vim. But I have to say, I'm a bit mystified about how you already "really like Eclipse for Java", implying that you're already familiar with how it works. In that case, why wouldn't you also use it for C++? CDT meets every requirement you've mentioned.

link
4  
The Eclipse C++ IDE is crippled beyond usefulness when compared to the Java equivalent. Seriously, it is hopeless. All the memory muscle tricks learned in the Java version inexplicably fail in the C++ one, making you much less productive. Like Superman with kryptonite in his undies. – richq Feb 20 '09 at 21:34
feedback

Having been raised on Visual Studio, I've found the relatively young Code::Blocks to be very familiar.

link
feedback

Also you can try to setup emacs as an IDE.

Details are discussed here.

link
feedback

why wouldn't you also use it for C++? CDT meets every requirement you've mentioned.

I didn't use eclipse at first because I wasn't sure that it was equally good at giving me the means of developing in C++ (efficiently). Besides that, I was also convinced that there had to be better, more specialized tools available for c++ development in Linux:

and I really like that [eclipse] IDE for java, but is it any good for c++ and won't I miss out on something that is even better?

I honestly believe that, although some tools (like eclipse) are great at many things, it is best to look for other options as well (and I don't mean that for IDE's only, but in general and even in real life)...
Like in this case, vim is really great, and I would have missed out on it if I sticked to something I already knew.

link
feedback

Code::Blocks is Great.

link
feedback

acme, sam from plan9,

you can use it through Plan 9 from User Space.

link
feedback

IntelliJ IDEA + the C/C++ plugin at http://plugins.intellij.net/plugin/?id=1373

Prepare to have your mind-blown.

Cheers!

link
feedback

In my eyes best IDE for Linux is SlickEdit. It cost some money but it is fast, great support for tagging and great diff tool, works well with huge project.

link
feedback
1 2

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