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

2019-04-10 02:51发布

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 =(

标签: c++ ide ssh
10条回答
放我归山
2楼-- · 2019-04-10 02:59

For editing you can use basically any editor that has FTP/SFTP support (I've used jEdit: free, a great tool with loads of plugins; played with SlickEdit: really cool but pretty expensive) or map the target drive in Windows using Samba or anything else of that nature. Then use Putty's plink for compiling/building.

查看更多
做自己的国王
3楼-- · 2019-04-10 02:59

For ssh-support, I'd say putty and emacs-on-server is an option. :)

查看更多
叛逆
4楼-- · 2019-04-10 03:03

CodeBlocks.

It comes with MinGW.

查看更多
forever°为你锁心
5楼-- · 2019-04-10 03:06

For a programming project stored on a linux server, I prefer Git. I do not know if more people are involved, but using git can make programming in a group a lot easier.

And as IDE I prefer Visual Studio. The RC for 2010 is now available at MSDN. Visual Studio 2010. Maybe you should give it a try.

查看更多
兄弟一词,经得起流年.
6楼-- · 2019-04-10 03:09

devc++ seems interesting. It's free and makes use of MinGW as a POSIX layer. It's great if you're interested in doing cross-platform development on Windows and Linux/UNIX.

查看更多
贪生不怕死
7楼-- · 2019-04-10 03:12

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.

查看更多
登录 后发表回答