vote up 3 vote down star
1

I'm used to work with SourceInsight for windows which works great, shows caller and callee for each function, shows the content of a function the cursor is on and smartly auto-completes symbols across project.

I don't feel like falling into the long learning curve of vim/emacs. I want productivity and I want it fast (I don't mean a console thing, I'm talking about a real IDE)

flag

67% accept rate
Please remember to search before creating a new question. – bradtgmurray Sep 17 '08 at 19:28

13 Answers

vote up 12 vote down check

Code::Blocks

is a multiplattform IDE (Win, Mac & Linux) which works perfectly (The GUI is created wi wxWidgets) and integrates with many compilers, and gcc/g++ is the primary option (of course). It's fast, complete and reliable. Even imports projects from visual studio and devpacks from dev-c++, has support for external plugins, etc.

link|flag
vote up 4 vote down

See http://stackoverflow.com/questions/24109/c-ide-for-linux

link|flag
vote up 8 vote down

Eclipse (http://www.eclipse.org/cdt/) is a big one.

You have to take into account the learning curve too. If you can jump into using one system almost immediately or use a different system (that is refined as time goes on) that has a steeper learning curve, but you'll be much more productive later, which one is the right path to take?

link|flag
Eclipse is golden for multilanguage projects. Given that many if not most C++ projects involve at least some XML/HTML or some scripting language, Eclipse looks really good. – kbluck Oct 20 '08 at 16:16
vote up 1 vote down

You could try Anjuta (http://anjuta.sourceforge.net)

link|flag
vote up 2 vote down

I use KDevelop for KDE, it's primarily a C++ IDE, but has support for many languages, including Python, Perl and Ruby as far as I know. It has a GUI designer for KDE applications and a documentation viewer.

Of course, many of it's features tend to be specific to KDE programming, so if you're using GTK or some other GUI toolkit these features won't be of much use (Though I find it very useful for console applications as well as GUI applications)

link|flag
vote up 0 vote down

I used to use Anjuta, and loved it. Then they released Anjuta2 to replace 1.x, but forgot to include functionality. I now use Eclipse.

link|flag
vote up 0 vote down

I spent a lot of time looking for a decent *nix IDE, but eventually gave up and now I use vim + cscope + gdb.

link|flag
vote up 0 vote down

by the way, I could run source insight under linux with wine. it works great for the 30-trial days but it's not an open-source product.

link|flag
vote up 1 vote down

I like Code::Blocks. It's got all the modern features, customizable interface, and not as gigantic as eclipse. I found out about it here - this question.

link|flag
vote up 0 vote down

Netbeans is a great solution, and eclipse is it too. However, my experience tell me that the first one is better out of the box. The plugin stuff of eclipse can become a little messy.

link|flag
vote up 0 vote down

the most of ide under linux is unstable sometimes, so i suggest you use vim or emacs.

link|flag
vote up 0 vote down

I've had success using kDevelop for c/c++ development.

link|flag
vote up 1 vote down

If you're doing Qt development, you could try QtCreator. I haven't used it much myself, but the debugger seems to work well.

link|flag

Your Answer

Get an OpenID
or

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