Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which IDE Should I use for C++ on Windows? [closed]

Tags:

c++

ssh

ide

Which IDE for C++ should I use on Windows?

Is there an IDE with support for editing over SSH on a GNU/Linux server?

I have very big C++ project without docs and editing it with text editor very difficult =(

like image 249
nucleartux Avatar asked Feb 14 '10 17:02

nucleartux


4 Answers

On Windows, it's hard to beat the freely available Visual Studio Express.

A viable alternative would be the Qt Creator, which is lightweight and comes with the completely awesome Qt library.

like image 76
Shaun Avatar answered Oct 18 '22 04:10

Shaun


Eclipse is very powerful editor for both C++ and many other languages. It sounds like you're looking to develop from a Windows system for Linux?

WinSCP will make it possible for you edit files via SSH.

If your project is being stored in CVS, Subversion, Git, Mercurial, et al--Eclipse has plugins to integrate with these as well...

like image 44
Damon Avatar answered Oct 18 '22 06:10

Damon


On Windows I prefer:

Visual Studio + WinSCP

like image 25
road242 Avatar answered Oct 18 '22 04:10

road242


Have a look at Netbeans 6.8, specifically the Remote Development section:

Use the Development Host Manager in the C/C++ Options windows to define remote hosts. You can then use development tools on those hosts to build and run projects from your client system. Benefit from faster synchronization with the remote host.

I have been very happy using Netbeans remote debugging for a PHP project. Just configure it and on run it will to automatically ssh files to the remote server.

Alternatively, Visual Studio offers arguably the best C++ editor for windows C++ development, and you can script it to upload the files to a linux server.

Finally, you may want to look into Eclipse CDT as well.

like image 42
Justin Ethier Avatar answered Oct 18 '22 04:10

Justin Ethier