C++ IDE for Linux? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-21T21:15:43Z http://stackoverflow.com/feeds/question/24109 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/24109/c-ide-for-linux 22 C++ IDE for Linux? Sven 2008-08-23T09:52:59Z 2009-11-21T14:00:33Z <p>I'm currently in the process of expanding my programming horizons to Linux. In order to do that, it is important to have a good basic toolset on which you can rely on. and what is more basic then the IDE in which you write your code? (honestly, you don't want to code in Notepad; been there done that).</p> <p>There are two other questions/answers I could find here at Stack Overflow that are somewhat related:</p> <ul> <li><a href="http://beta.stackoverflow.com/questions/2756/lightweight-ide-for-linux" rel="nofollow">Lightweight IDE for linux</a> and</li> <li><a href="http://beta.stackoverflow.com/questions/17228/what-tools-do-you-use-to-develop-c-applications-on-linux" rel="nofollow">What tools do you use to develop C++ applications on Linux?</a></li> </ul> <p>But I'm not really looking for a <em>lightweight</em> IDE and if it is really worth the money I will pay for it, so it doesn't need to be free as well.</p> <p>So my question is: <em>what is a good IDE available in Linux to use as a programming platform for writing C++ code?</em></p> <p>The minimum should be like any other good IDE: syntax highlighting, code completion (like <a href="http://en.wikipedia.org/wiki/IntelliSense" rel="nofollow">intellisense</a> or its Eclipse counterpart) and integrated debugging (basic breakpoints are good).</p> <p>I already have searched for it myself, but there is so much to choose from that it is almost impossible to separate the good from the bads by hand, especially for someone like me without any C++ coding experience in Linux. However I do know that <a href="http://www.eclipse.org/cdt/" rel="nofollow">Eclipse supports C++</a>, and I really like that IDE for Java, but is it any good for C++ and won't I miss out on something that is even better?</p> <p>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 advantages/disadvantages?</p> <p>Maybe my question should therefore be: <em>what IDE do you propose given your own experience with it?, and why that one?</em>. Convince me.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24110#24110 2 Answer by Steve M for C++ IDE for Linux? Steve M 2008-08-23T09:55:17Z 2008-08-23T09:55:17Z <p>Checkout Netbeans, it's written in Java so you'll have the same environment regardless of your OS, and it supports a lot more than just C++.</p> <p>I'm not going to try to convince you, because I think IDEs can be a very personal choice. For me it improves my productivity by being fast, supporting the languages I code in and has the standard features you'd expect from an IDE.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24112#24112 3 Answer by Alexander Stolz for C++ IDE for Linux? Alexander Stolz 2008-08-23T09:57:07Z 2008-08-23T09:57:07Z <p>Netbeans is in my experience the most heavyweight IDE there is. I'm using Eclipse with the CDT plugin, its fast and it works pretty well.</p> <p><a href="http://www.eclipse.org/cdt/" rel="nofollow">http://www.eclipse.org/cdt/</a></p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24119#24119 68 Answer by Konrad Rudolph for C++ IDE for Linux? Konrad Rudolph 2008-08-23T10:06:09Z 2008-08-23T10:06:09Z <p>Actually, I recently made the switch from Visual Studio (<em>years</em> of experience there) to Linux and the first thing I did was try to find a reasonable IDE.</p> <p>And then I noticed that this simply isn't how you work there*, and I threw everything out, spent a few days reading manuals, set up my shell (bash), set up a GVIM environment, learned the GCC/binutils toolchain, <code>make</code> and <code>gdb</code> and lived happily ever after.</p> <p>There are certainly disadvantages but I am sure that I work much more productive since making the switch.</p> <p>*) It <em>really</em> isn't! And that's not an anachronism either because the toolchain described above is incredibly mature and powerful. Any IDE has to replicate hundreds of unique features to get anywhere near the power of these tools that have been honed to the point of perfection for decades. The learning curve might be quite steep, but much less so than I expected.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24122#24122 21 Answer by Imran for C++ IDE for Linux? Imran 2008-08-23T10:17:56Z 2008-08-23T10:17:56Z <ol> <li><a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a> </li> <li><a href="http://www.eclipse.org/cdt/" rel="nofollow">Eclipse CDT</a></li> </ol> <p>Soon you'll find that IDEs are not enough, and you'll have to learn the GCC toolchain anyway (which isn't hard, at least learning the basic functionality). But no harm in reducing the transitional pain with the IDEs, IMO.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24135#24135 14 Answer by Paul for C++ IDE for Linux? Paul 2008-08-23T10:53:30Z 2008-08-23T10:53:30Z <p>KDevelop is pretty nice.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24156#24156 14 Answer by Konrad Rudolph for C++ IDE for Linux? Konrad Rudolph 2008-08-23T11:30:54Z 2009-10-07T13:00:27Z <blockquote> <p>Could you clarify a little bit more how it was for you, what you had to change. Maybe you could point me in the right direction by providing some links to the information you used.</p> </blockquote> <p>My first source were actually the tools' <code>man</code> pages. Just type</p> <pre><code>$ man toolname </code></pre> <p>on the command line (<code>$</code> here is part of the prompt, not the input).</p> <p>Depending on the platform, they're quite well-written and can also be found on the Internet. In the case of <code>make</code>, I actually read the complete <a href="http://www.gnu.org/software/make/manual/make.html" rel="nofollow">documentation</a> which took a few hours. Actually, I don't think this is necessary or helpful in most cases but I had a few special requirements in my first assignments under Linux that required a sophisticated makefile. After writing the makefile I gave it to an experienced colleague who did some minor tweaks and corrections. After that, I pretty much knew <code>make</code>.</p> <p>I used gVim because I had some (but not much) prior experience there, I can't say anything at all about Emacs or alternatives. I find it really helps to read other peoples' <code>.gvimrc</code> config file. Many people put it on the web. Here's <a href="http://page.mi.fu-berlin.de/krudolph/stuff/gvimrc.html" rel="nofollow">mine</a>.</p> <p>Don't try to master all binutils at once, there are too many functions. But get a general overview so you'll know where to search when needing something in the future. You <em>should</em>, however, know all the important parameters for <code>g++</code> and <code>ld</code> (the GCC linker tool that's invoked automatically except when explicitly prevented).</p> <blockquote> <p>Also I'm curious, do you have code completion and syntax highlighting when you code?</p> </blockquote> <p>Syntax highlighting: yes, and a much better one than Visual Studio. Code completion: yes-<em>ish</em>. First, I have to admit that I didn't use C++ code completion even in Visual Studio because (compared to VB.NET and C#) it wasn't good enough. I don't use it often now but nevertheless, gVim <em>has</em> native code completion support for C++. Combined with the <a href="http://ctags.sourceforge.net/" rel="nofollow">ctags</a> library and a plug-in like <a href="http://vim-taglist.sourceforge.net/" rel="nofollow">taglist</a> this is almost an IDE.</p> <p>Actually, what got me started was an <a href="http://lucumr.pocoo.org/articles/vim-as-development-environment" rel="nofollow">article</a> by Armin Ronacher. Before reading the text, look at the screenshots at the end of it!</p> <blockquote> <p>Do you have to compile first before getting (syntax) errors?</p> </blockquote> <p>Yes. But this is the same for Visual Studio, isn't it (I've never used Whole Tomato)? Of course, the syntax highlighting will show you non-matching brackets but that's about all.</p> <blockquote> <p>and how do you debug (again think breakpoints etc)?</p> </blockquote> <p>I use <code>gdb</code> which is a command-line tool. There's also a graphical frontend called <code>DDD</code>. <code>gdb</code> is a modern debugging tool and can do everything you can do in an IDE. The only thing that really annoys me is reading a stack trace because lines aren't indented or formatted so it's really hard to scan the information when you're using a lot of templates (which I do). But those also clutter the stack trace in IDEs.</p> <blockquote> <p>Like I said, I had the 'pleasure' to set my first steps in the Java programming language using Windows Notepad and the command line Java compiler in high school, and it was, .. well a nightmare! certainly when I could compare it with other programming courses I had back then where we had decent IDE's</p> </blockquote> <p>You shouldn't even try to compare a modern, full-feature editor like Emacs or gVim to Notepad. Notepad is an embellished <code>TextBox</code> control, and this really makes all the difference. Additionally, working on the command line is a very different experience in Linux and Windows. The Windows <code>cmd.exe</code> is severely crippled. PowerShell is much better.</p> <p>/EDIT: I should mention explicitly that <strong>gVim has tabbed editing</strong> (as in tabbed browsing, not tabs-vs-spaces)! It took me ages to find them although they're not hidden at all. Just type <code>:tabe</code> instead of plain <code>:e</code> when opening a file or creating a new one, and gVim will create a new tab. Switching between tabs can be done using the cursor or several different shortcuts (depending on the platform). The key <code>gt</code> (type <code>g</code>, then <code>t</code> in command mode) should work everywhere, and jumps to the next tab, or tab no. <em>n</em> if a number was given. Type <code>:help gt</code> to get more help.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24159#24159 3 Answer by Greg Hewgill for C++ IDE for Linux? Greg Hewgill 2008-08-23T11:34:54Z 2009-10-07T13:59:22Z <p>Although I use Vim, some of my co-workers use <a href="http://www.slickedit.com/" rel="nofollow">SlickEdit</a> which looks pretty good. I'm not certain about integrated debugging because we wouldn't be able to do that on our particular project anyway.</p> <p>SlickEdit does have good support for navigating large code bases, with cross referencing and tag jumping. Of course it has the basic stuff like syntax highlighting and code completion too.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24160#24160 11 Answer by Kristopher Johnson for C++ IDE for Linux? Kristopher Johnson 2008-08-23T11:38:34Z 2009-05-08T09:39:07Z <p>As an old-time UNIX guy, I always use Emacs. But that has a pretty steep and long learning curve, so I'm not sure I can recommend it to newcomers.</p> <p>There really isn't a "good" IDE for Linux. Eclipse is not very good for C/C++ (CDT is improving, but is not very useful yet). The others are missing all the features you are going to be looking for.</p> <p>It really is important to learn how all the individual tools (gcc, make, gdb, etc.) work. After you do so, you may find the Visual Studio way of doing things to be very limiting.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24174#24174 3 Answer by wvdschel for C++ IDE for Linux? wvdschel 2008-08-23T12:14:51Z 2008-08-23T12:14:51Z <p>I hear Anjuta is pretty slick for Gnome users. I played a bit with KDevelop and it's nice, but sort of lacking featurewise. Code::Blocks is also very promising, and I like that one best.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24240#24240 2 Answer by davidg for C++ IDE for Linux? davidg 2008-08-23T13:52:25Z 2008-10-11T17:50:12Z <p>I quite like <a href="http://www.ultimatepp.org/" rel="nofollow">Ultimate++</a>'s IDE. It has some features that were designed to use with their own library (which, BTW, is quite a nice toolkit if you don't want to buy on either GTK+ or QT) but it works perfectly well with general C++ projects. It provides decent code completion, good syntax colouring, integrated debugging, and all other features most modern IDEs support.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24264#24264 6 Answer by jassuncao for C++ IDE for Linux? jassuncao 2008-08-23T14:32:22Z 2008-08-23T14:32:22Z <p>If you like Eclipse for Java, I suggest Eclipse CDT. Despite C/C++ support isn't so powerful as is for Java, it still offers most of the features. It has a nice feature named Managed Project that makes working with C/C++ projects easier if you don't have experience with Makefiles. But you can still use Makefiles. I do C and Java coding and I'm really happy with CDT. I'm developing the firmware for a embedded device in C and a application in Java that talks to this device, and is really nice to use the same environment for both. I guess it probably makes me more productive.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/50234#50234 6 Answer by rck for C++ IDE for Linux? rck 2008-09-08T17:31:44Z 2008-09-08T17:31:44Z <p>Not to repeat an answer, but I think I can add a bit more.</p> <p><a href="http://www.slickedit.com" rel="nofollow">Slickedit</a> is an excellent IDE.</p> <p>It supports large code-bases well without slowing down or spending all its time indexing. (This is a problem I had with eclipse's cdt). Slickedit's speed is probably the nicest thing about it, actually.<br> The code completion works well and there are a large amount of options for things like automatic formatting, beautification and refactoring.<br> It does have integrated debugging.<br> It has plug-in support and fairly active community creating them.<br> In theory, you should be able to integrate well with people doing the traditional makefile stuff, as it allows you to create a project directly from one, but that didn't work as smoothly as I would have liked when I tried it.<br> In addition to Linux, there are Mac and Windows versions of it, should you need them.<br></p> http://stackoverflow.com/questions/24109/c-ide-for-linux/53922#53922 8 Answer by ramayac for C++ IDE for Linux? ramayac 2008-09-10T12:46:41Z 2009-10-07T12:12:22Z <p><em>A quick answer, just to add a little more knowledge to this topic:</em><br /> You must definitely check out <a href="http://www.netbeans.org/features/cpp/" rel="nofollow">NetBeans</a>. Netbeans 6.7 has the following features: </p> <ul> <li>C/C++ Projects and Templates: Supports syntax highlighting, automatic code completion, automatic indentation.</li> <li>It has a C/C++ Debugger</li> <li>Supports Compiler Configurations, Configuration Manager and Makefile Support (with a Wizard).</li> <li>It has a Classes Window, a Usages Window and a File Navigation Window (or panel).</li> <li>A <a href="http://wiki.netbeans.org/NewAndNoteworthyMilestone2NB67#section-NewAndNoteworthyMilestone2NB67-MacroExpansionView" rel="nofollow">Macro expansion view</a>, and also <a href="http://wiki.netbeans.org/NewAndNoteworthyMilestone2NB67#section-NewAndNoteworthyMilestone2NB67-MacroExpansionTooltip" rel="nofollow">tooltips</a>.</li> <li>Support for <a href="http://wiki.netbeans.org/NewAndNoteworthyMilestone2NB67#section-NewAndNoteworthyMilestone2NB67-QtSupport" rel="nofollow">QT development</a>.</li> </ul> <p>I think it's a perfect (and far better) Visual Studio substitution, and a very good tool to learn C/C++.</p> <p>Good Luck!</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/53983#53983 1 Answer by Please delete this account for C++ IDE for Linux? Please delete this account 2008-09-10T13:08:07Z 2008-09-10T13:08:07Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/63769#63769 2 Answer by James Dean for C++ IDE for Linux? James Dean 2008-09-15T15:10:11Z 2008-09-15T15:10:11Z <p>I like <a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a> 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.</p> <p>I use it together with Git for source code control and the very useful 'git grep' command for searching in your code base.</p> <p>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.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/86958#86958 2 Answer by anjanb for C++ IDE for Linux? anjanb 2008-09-17T19:55:23Z 2008-09-17T19:55:23Z <p>hi there,</p> <p>Sun Studio version 12 is a free download(FREE and paid support available) -- <a href="http://developers.sun.com/sunstudio/downloads/thankyou.jsp?submit=%A0FREE+Download%A0%BB%A0" rel="nofollow">http://developers.sun.com/sunstudio/downloads/thankyou.jsp?submit=%A0FREE+Download%A0%BB%A0</a>.</p> <p>I'm sure you have code completion and debugging support including plugin support in this IDE.</p> <p>Sun Studio is available for Linux as well as Solaris. forums : <a href="http://developers.sun.com/sunstudio/community/forums/index.jsp" rel="nofollow">http://developers.sun.com/sunstudio/community/forums/index.jsp</a>. Sun Studio Linux forums : <a href="http://forum.sun.com/forum.jspa?forumID=855" rel="nofollow">http://forum.sun.com/forum.jspa?forumID=855</a></p> <p>I'll be eager to hear your feedback on this tool.</p> <p>BR,<br> ~A</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/156760#156760 7 Answer by Sven for C++ IDE for Linux? Sven 2008-10-01T08:53:37Z 2009-10-07T13:23:35Z <p>Just a quick follow up for this question...</p> <p>It's been a month since I started using Vim as my main 'GUI' tool for programming C++ in Linux. At first the learning curve was indeed a bit steep but after a while and with the right options turned on and <a href="http://ctags.sourceforge.net/" rel="nofollow">scripts running</a> I really got the hang of it!</p> <p>I love the way how you can shape Vim to suite your needs; just add/change <a href="http://www.vim.org/htmldoc/map.html" rel="nofollow">key mappings</a> and Vim is turned into a highly productive 'IDE'.</p> <p>The toolchain to build and compile a C++ program on Linux is also really intuitive. make and g++ are <em>the</em> tools you'll use.</p> <p>The <a href="http://www.gnu.org/software/ddd/" rel="nofollow">debugger ddd</a> is however not really that good, but maybe that's because I haven't had the time to master it properly.</p> <p>So to anyone who is, or was looking for a good C++ IDE in Linux, just like I was, your best bet lays with the standard available tools in Linux itself (Vim, g++, ddd) and you should really at least try to use them, before looking for sonething else...</p> <p>Last but not least, I really want to thank <a href="http://stackoverflow.com/users/1968/konrad-rudolph">konrad</a> for his answer here, It really helped me find my way in the Linux development environment, thank you!</p> <p>I'm also <em>not</em> closing this question, so people can still react or maybe even add new suggestions or additions to the already really nice answers...</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/219039#219039 1 Answer by kbluck for C++ IDE for Linux? kbluck 2008-10-20T16:23:11Z 2008-10-20T16:23:11Z <p>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.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/219232#219232 0 Answer by Sven for C++ IDE for Linux? Sven 2008-10-20T17:28:48Z 2008-10-20T17:28:48Z <blockquote> <p><a href="http://stackoverflow.com/questions/24109/c-ide-for-linux#219039">why wouldn't you also use it for C++? CDT meets every requirement you've mentioned.</a></p> </blockquote> <p>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: </p> <blockquote> <p>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?</p> </blockquote> <p>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 <em>real life</em>)...<br /> Like in this case, vim is really great, and I would have missed out on it if I sticked to something I already knew. </p> http://stackoverflow.com/questions/24109/c-ide-for-linux/222746#222746 2 Answer by DavidG for C++ IDE for Linux? DavidG 2008-10-21T17:38:20Z 2009-10-07T12:03:55Z <p>I really suggest <a href="http://www.codeblocks.org" rel="nofollow">codeblocks</a>. It's not as heavy as Eclipse and it's got Visual Studio project support.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/382453#382453 1 Answer by Shmoopty for C++ IDE for Linux? Shmoopty 2008-12-19T22:41:47Z 2008-12-19T22:41:47Z <p>Having been raised on Visual Studio, I've found the relatively young <a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a> to be very familiar.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/384861#384861 2 Answer by Hernán for C++ IDE for Linux? Hernán 2008-12-21T19:48:59Z 2008-12-21T19:48:59Z <p>I've previously used Ultimate++ IDE and it's rather good. </p> http://stackoverflow.com/questions/24109/c-ide-for-linux/408842#408842 4 Answer by Henrik Hartz for C++ IDE for Linux? Henrik Hartz 2009-01-03T10:10:41Z 2009-01-03T10:10:41Z <p>At least for Qt specific projects, the <a href="http://trolltech.com/developer/qt-creator/qt-creator" rel="nofollow">Qt Creator Beta</a> (from Qt Software) shows great promise.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/452152#452152 3 Answer by catphive for C++ IDE for Linux? catphive 2009-01-16T21:44:46Z 2009-01-16T21:44:46Z <p>I program fairly heavily on C++ in Linux and I've found no decent IDE on Linux.</p> <p>On Linux you need two tools. An editor and a build tool. This has some disadvantages in that there is more learning curve learning how to use a build tool than an IDE, and some advantages in that it doesn't force everyone to use the same IDE with the same project model.</p> <p>As others have mentioned, Slickedit is the closest thing to visual studios in the editor department.</p> <p>Some people like emacs and vim and will tell you that ancient teletype editors are just "the way it is done" on Linux. Generally, you can ignore these people, as they haven't changed how they've written software in 30 years, and are hostile to any new ideas. Most of them write in C and not C++ anyway, so really they are playing armchair quaterback when giving advice on tools for writing C++.</p> <p>Actually, it's surprising how few people on Linux use C++ given how prevalent it is elsewhere. Even the C++ compiler G++ is written in C as it is FSF policy to only use C and Lisp.</p> <p>For a build tool, you should check out either scons or CMake. Scons is a python based build tool that can parse C++ #include statements and automatically detect dependencies between .cpp and .h files. It also does a much more accurate build than other tools, and you will probably never have to do a "make clean" equivalent. It supports parallel builds as well.</p> <p>Scons also has a lot of the functionality of autotools integrated into it, which is nice because autotools is awful software that almost no one actually knows how to use properly.</p> <p>Make and autotools are often recommended, and should be ignored because again people only like it because it is old and familiar, not because it is actually up to par with modern competitors.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/517736#517736 2 Answer by NVRAM for C++ IDE for Linux? NVRAM 2009-02-05T20:21:41Z 2009-02-05T20:21:41Z <blockquote> <p>And then I noticed that this simply isn't how you work there*, and I threw everything out, spent a few days reading manuals, set up my shell (bash), set up a GVIM environment, learned the GCC/binutils toolchain, make and gdb and lived happily ever after.</p> </blockquote> <p>I'd mostly agree, but the problem is also one of perception: we forget how difficult it was to become productive in any chose IDE (or other environment). I find IDE's (Visual Studio, NetBeans, Eclipse) amazingly cumbersome in so many ways.</p> <blockquote> <p>As an old-time UNIX guy, I always use Emacs. But that has a pretty steep and long learning curve, so I'm not sure I can recommend it to newcomers.</p> </blockquote> <p>I'd second that; use Emacs as my primary editor on both Linux and on MSW (XP2,W2K). I would disagree that it has a <em>steep</em> learning curve, but would say that because of the huge number of features it has a <em>long</em> learning curve. You can be productive within a short time, but if you want you can learn new features of it for years to come.</p> <p>However -- don't expect all the features of Emacs to be available on drop-down menus, there is just too much functionality to find it there.</p> <p>As I metioned, I've used GNU Emacs on MSW for years. And it's always worked well with Visual Studio until I "upgraded" to 2008; now it <em>sometimes</em> delays many seconds before refreshing files from disk. The main reason for editing in the VS window is the "Intellisense" code completion feature.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/676490#676490 2 Answer by john for C++ IDE for Linux? john 2009-03-24T08:05:56Z 2009-03-24T12:01:55Z <p><a href="http://www.geany.org/" rel="nofollow">geany</a> I recommend</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/839107#839107 2 Answer by dsm for C++ IDE for Linux? dsm 2009-05-08T09:59:30Z 2009-05-08T09:59:30Z <p>I recommend you read <a href="http://www.faqs.org/docs/artu/" rel="nofollow">The Art Of UNIX Progranmming</a>. It will frame your mind into using the environment as your IDE.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/1531671#1531671 1 Answer by Molex for C++ IDE for Linux? Molex 2009-10-07T13:32:27Z 2009-10-07T13:32:27Z <p>Use <a href="http://www.mono-project.com/Main%5FPage" rel="nofollow">Mono-Develop</a>. It is very similar to Visual Studio. It works cross-platform and is Awesome!! </p> http://stackoverflow.com/questions/24109/c-ide-for-linux/1698822#1698822 1 Answer by radim for C++ IDE for Linux? radim 2009-11-09T02:35:05Z 2009-11-09T02:35:05Z <p>SlickEdit. I have used and loved SlickEdit since 2005, both on Windows and on Linux. I also have experience working in Visual Studio (5, 6, 2003, 2005) and just with Emacs and command line. I use SlickEdit with external makefiles, some of my teammates use SlickEdit, others use Emacs/vi. I do not use the integrated debugger, integrated version control, integrated build system: I generally find too much integration to be real pain. SlickEdit is robust (very few bugs), fast and intuitive. It is like a German car, a driver's car. </p> <p>The newest versions of SlickEdit seem to offer many features that do not interest me, I am a little worried that the product will become bloated and diluted in the future. For now (I use V13.0) it is great.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/1775460#1775460 3 Answer by t-legiaw for C++ IDE for Linux? t-legiaw 2009-11-21T13:19:11Z 2009-11-21T14:00:33Z <p>My personal favorite is the <strong>CodeLite 2.x</strong> IDE.</p> <p>see: <a href="http://www.codelite.org/" rel="nofollow" title="codelite website">http://www.codelite.org</a></p> <p>The decision to use CodeLite was based on my own research regarding the following C++ IDE for Linux:</p> <ul> <li>Eclipse Galileo with CDT Plugin</li> <li>NetBeans 6.7 (which is also the base for the SunStudio IDE)</li> <li>KDevelop4</li> <li>CodeBlocks 8.02</li> <li>CodeLite 2.x</li> </ul> <p>After all I have decided to use <em>CodeLite 2.x</em>.</p> <p>Below I have listed some Pros and Cons regarding the mentioned C++ IDEs. Please note, that this reflects my personal opinion only!</p> <p><strong>Eclipse Galileo with CDT Plugin</strong></p> <p>Pros:</p> <ul> <li>reasonable fast</li> <li>also supports Java, Perl(with E.P.I.C plugin)</li> <li>commonly used and well maintained</li> <li>also available for other OS flavours (Windows, MacOS, Solaris, AIX(?))</li> </ul> <p>Cons:</p> <ul> <li>GUI is not very intuitive</li> <li>heavy weight</li> <li>Only supports CVS (AFAIK)</li> </ul> <p><strong>NetBeans 6.7</strong> (note this is also the base for the SunStudio IDE)</p> <p>Pros:</p> <ul> <li>one of the most intuitive GUI I have ever seen</li> <li>also supports Java, Python, Ruby</li> <li>integrates CVS, SVN, Mercurial</li> <li>commonly used and well maintained</li> <li>also available for other OS flavours (Windows, MacOS, Solaris)</li> </ul> <p>Cons:</p> <ul> <li>extremly slow</li> <li>heavy weight</li> <li>uses Spaces for indentation, which is not the policy at my work. I'm sure this is configurable, but I couldn't find out how to to that</li> </ul> <p><strong>KDevelop4</strong> (note: I did not much testing on it)</p> <p>Pros:</p> <ul> <li>commonly used on Linux</li> <li>integrates CVS, SVN, Mercurial</li> </ul> <p>Cons:</p> <ul> <li>the GUI looks somewhat old fashioned</li> <li>heavy weight</li> <li>very specific to the KDE environment</li> </ul> <p><strong>CodeBlocks 8.02</strong> (note: I did not much testing on it)</p> <p>Pros:</p> <ul> <li>reasonable fast</li> </ul> <p>Cons:</p> <ul> <li>the GUI looks somewhat old fashioned (although it has a nice startup screen)</li> <li>the fonts in the editor are very small</li> <li>some icons (e.g. the debugger related icons starting/stepping) are very small</li> <li>no versioncontrol integration</li> </ul> <p><strong>CodeLite 2.x</strong> (note: this is my personal favorite)</p> <p>Pros:</p> <ul> <li>the best, modern looking and intuitive GUI I have seen on Linux</li> <li>lightweight</li> <li>reasonable fast</li> <li>integrates SVN</li> <li>also available on other OS flavours(Windows, MacOS, Solaris(?))</li> </ul> <p>Cons:</p> <ul> <li>no CVS integration (that's important for me because I have to use it at work)</li> <li>no support for Java, Perl, Python (would be nice to have)</li> </ul>