官方介绍这个插件的博客:(https://blogs.msdn.microsoft.com/vcblog/2016/03/30/visual-c-for-linux-development/)
2.然后下载Visual C++ for Linux Development,即 "VC_Linux.exe"
(https://visualstudiogallery.msdn.microsoft.com/725025cf-7067-45c2-8d01-1e0fd359ae6e)
4.,第3步也可以使用网页https://pkgs.org/centos-6/centos-x86_64/gdb-gdbserver-7.2-90.el6.x86_64.rpm/download/
下载二进制文件,下载地址:http://mirror.centos.org/centos/6/os/x86_64/Packages/gdb-gdbserver-7.2-90.el6.x86_64.rpm
然后执行rpm –i gdb-gdbserver-7.2-90.el6.x86_64.rpm,使用如下代码安装
sudo apt-get install rpm (rpm是主流的软件安装管理方式,见鸟哥P685)
rpm –i gdb-gdbserver-7.2-90.el6.x86_64.rpm
6.工具->选项->cross platform->connection manager
7.在项目名上右键,调出属性窗口,在target machine上选择你的目标主机
9.写个代码来试试,记得要注意x86和x64的调试选项,我的就选x86:
10.直接在ubuntu中生成.out可执行文件。文件的位置可以在属性-配置中的Remote setting中看到。
更多如何在Visual Studio上用C/C++写linux程序,关注这个知乎话题https://www.zhihu.com/question/26388094