VS Code 使用SFTP、GDB调试C++程序
程序员文章站
2022-06-17 17:20:37
...
SFTP安装
参见官方步骤
Ctrl+Shift+P on Windows/Linux or Cmd+Shift+P on Mac open command palette, run SFTP: config command.
Simple
{
"name": "big server",
"host": "hostlocal",
"protocol": "sftp",
"port": 22,
"username": "root",
"remotePath": "/root",
"uploadOnSave": true
}
右键点击big server ,打开Open SSH in Terminal
输入密码连接服务器。
在这里输入密码连接服务器文件进行编辑。
致此就可以通过GDB(可以使用插件比如gef
)调试C++程序、用VSCode编写代码。