What is a good C++ IDE for Windows for compiling in Linux? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T05:48:15Zhttp://stackoverflow.com/feeds/question/741057http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/741057/what-is-a-good-c-ide-for-windows-for-compiling-in-linux2What is a good C++ IDE for Windows for compiling in Linux?St. John Johnson2009-04-12T00:31:39Z2009-04-15T17:12:50Z
<p>I know there are <strong>many</strong> IDE related questions already answered on StackOverflow, but I have a strange request.</p>
<p>I'm looking for a C++ IDE for Windows that is designed with Linux as a destination compile point. I just want to use it for syntax highlight, code completion, basic error detection, etc. In the end all code will be sftped over to a Linux server for compiling and debugging.</p>
<p>So what would you recommend as an Windows IDE designed to compile for Linux?</p>
http://stackoverflow.com/questions/741057/what-is-a-good-c-ide-for-windows-for-compiling-in-linux/741064#7410644Answer by Lucas McCoy for What is a good C++ IDE for Windows for compiling in Linux?Lucas McCoy2009-04-12T00:37:43Z2009-04-12T00:44:41Z<p>You can use any IDE you like, all you have to do is re-compile your code for linux. However your best bet is to stick with standard template libraries. If you start using header files like 'windows.h' then you can get into trouble.</p>
<p><b>EDIT:</b> Here are some nice IDE's + links.</p>
<p>My personal favorite IDE is <a href="http://www.qtsoftware.com/products/developer-tools" rel="nofollow">Qt Creator</a>. Now yes I am a Qt (hobby) programmer, but it's all cross platform. Also you might try <a href="http://www.netbeans.org" rel="nofollow">Netbeans</a> I really like it but it's got it's drawbacks. It's slow (written in java), it takes a little time to set it up for C++ because it's primarily for java. But all in all it's not that half bad.</p>
http://stackoverflow.com/questions/741057/what-is-a-good-c-ide-for-windows-for-compiling-in-linux/741067#7410671Answer by akent for What is a good C++ IDE for Windows for compiling in Linux?akent2009-04-12T00:40:43Z2009-04-12T01:21:02Z<p>I think you might find very quickly that what you describe becomes really, really annoying in practice. You might find it easier to use some kind of linux virtual machine on your Windows desktop, if you are absolutely forced to develop on Windows. Or look into having a second dedicated-linux machine, linked together with <a href="http://synergy2.sourceforge.net/" rel="nofollow">Synergy</a>, perhaps.</p>
<p>Of course, text editors like Vim and Emacs run fine on Windows. Other than that, I'd suggest <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> with the <a href="http://www.eclipse.org/cdt/" rel="nofollow">C++ plugin</a> might be the go and worth looking at.</p>
<p><strong>EDIT:</strong> I've also heard good things about <a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a> and keep meaning to check it out... all nice and cross-platform too.</p>
http://stackoverflow.com/questions/741057/what-is-a-good-c-ide-for-windows-for-compiling-in-linux/741073#7410731Answer by rstevens for What is a good C++ IDE for Windows for compiling in Linux?rstevens2009-04-12T00:47:30Z2009-04-12T00:47:30Z<p>I would prefer Eclipse + CDT.</p>
<p>It uses GCC compatible indexing (parsing of code for auto completion).</p>
<p>P.S.: The request is not that strange. I also use Windows as development platform for Linux (embedded ARM platform) development.</p>
<p>This is very often the case because if you have software for Windows and an embedded device you don't want to bother with an additional PC Linux just for development.</p>
<p>I also use a Cross GCC for compilation but this is not needed to use Eclipse+CDT just for editing.</p>
http://stackoverflow.com/questions/741057/what-is-a-good-c-ide-for-windows-for-compiling-in-linux/741095#7410950Answer by hasen j for What is a good C++ IDE for Windows for compiling in Linux?hasen j2009-04-12T00:57:21Z2009-04-12T00:57:21Z<p>What I do with my university assignments is use mingw on windows, and just edit my c++ files with a regular text editor, namely notepad++</p>
<p>Seriously man, don't be too dependent on an IDE, you should be able to program with or without one.</p>
http://stackoverflow.com/questions/741057/what-is-a-good-c-ide-for-windows-for-compiling-in-linux/741116#7411161Answer by Michael Burr for What is a good C++ IDE for Windows for compiling in Linux?Michael Burr2009-04-12T01:20:05Z2009-04-12T01:20:05Z<p>I used Visual Studio quite successfully for a non-Windows target. My target wasn't Linux, it was an embedded system - however it had nothing to do with Windows.</p>
<p>It worked very, very nicely (I also had Visual Assist installed, which I think adds a huge amount of value to Visual Studio). I set up a makefile project to perform the build so I could do pretty much everything except debug in Visual Studio.</p>
<p>So if you have a gcc Windows to Linux cross compiler (is there such a thing?) you should be able to set up a makfile that builds the project and probably even deploys it to a target system that you can debug on.</p>
http://stackoverflow.com/questions/741057/what-is-a-good-c-ide-for-windows-for-compiling-in-linux/741124#7411241Answer by lothar for What is a good C++ IDE for Windows for compiling in Linux?lothar2009-04-12T01:26:08Z2009-04-12T01:26:08Z<p>Eclipse <a href="http://www.eclipse.org/cdt/" rel="nofollow">CDT</a> is not only an IDE that works on many platforms, It has also <a href="http://dev.eclipse.org/mhonarc/lists/dsdp-tm-dev/msg00171.html" rel="nofollow">remote features</a></p>
<p>If you find that the development procedure you outlined is too cumbersome it will allow you to develop natively on Linux without a need to change any of your projects.</p>
<p>You can also use the <a href="http://www.eclipse.org/dsdp/tm/" rel="nofollow">Remote System Explorer from DSDP/TM</a> to transfer your files as described in your question.</p>
http://stackoverflow.com/questions/741057/what-is-a-good-c-ide-for-windows-for-compiling-in-linux/741208#7412081Answer by Tian Bo for What is a good C++ IDE for Windows for compiling in Linux?Tian Bo2009-04-12T03:04:32Z2009-04-12T03:04:32Z<p>Use any IDE that you like. What's important is the compiler, and I would recommend MinGW (it's a Windows port of G++).</p>
http://stackoverflow.com/questions/741057/what-is-a-good-c-ide-for-windows-for-compiling-in-linux/752760#7527601Answer by misc090912 for What is a good C++ IDE for Windows for compiling in Linux?misc0909122009-04-15T17:12:50Z2009-04-15T17:12:50Z<p>Eclipse is a good starting point for C++ on any platform. I use Scintilla for basic syntax highlighting personally (SciTE) ... I used Netbeans and that was pretty good. I didn't stick with it long because it (along with Eclipse) is just too slow - I end up just pulling up the editor and using the command line.</p>
<p>As an aside,</p>
<p>Visual Studio is the best IDE in the world for any language. People can hate on Microsoft, but they really know how to treat their developers.</p>