visual GDB配合 visual studio 2013开发 linux程序

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wowocpp/article/details/86086707

visualGDB官网:

https://visualgdb.com

参考网址:

http://www.cnblogs.com/robinex/p/7875934.html
VS插件VisualGDB破解版下载、安装和使用说明
https://blog.csdn.net/sunxiaopengsun/article/details/79309711

使用VS+VisualGDB编译调试Linux程序
https://www.cnblogs.com/hbccdf/p/use_vs_and_visualgdb_develope_linux_app.html

ubuntu 16.04 上面需要安装的工具

sudo apt-get install gcc
sudo apt-get insatll make
sudo apt-get install g++
sudo apt-get install gdb
sudo apt-get install gdbserver

sudo apt-get install openssh-server
安装ssh-server
sudo apt-get install openssh-server
安装ssh-client
sudo apt-get install openssh-client

2.确认sshserver是否安装好
ps -e | grep sshd
450 ? 00:00:00 sshd

工程设置:

在这里插入图片描述

news

如题,vs2017能够支持调试linux代码了,感觉非常方便,比直接在linux系统上操作要方便很多。不过目前还没有研究出来怎么直接通过vs debug启动linux上的执行程序。希望有知道的大佬分享一下方法。

https://visualgdb.com/download/
nstallation Instructions
If you are updating from an older version of VisualGDB, simply run the new MSI file. It will perform the update automatically and will use your old license key.
Install Visual Studio 2008 - 2017. Express Editions are not supported. Use the free VS Community Edition instead.
Download the MSI file using the link above.
Run the installer.
Follow the instructions of the Installation Wizard:

使用的 visual GDB 版本

VisualGDB-5.3r3

1、安装完成后,将PatchVisualGDB.exe拷贝到安装好的visualgdb.exe文件所在目录,我的在:C:\Program Files (x86)\Sysprogs\VisualGDB
2、双击运行PatchVisualGDB.exe,会弹出对话框,表示破解成功
3、此时启动vs2013,我的会报破解未成功
4、退出vs2013,再进行C:\Program Files (x86)\Sysprogs\VisualGDB,运行PatchVisualGDB.exe
5、再次启动vs2013,OK了

猜你喜欢

转载自blog.csdn.net/wowocpp/article/details/86086707