一、编译配置
1.快捷键(Ctrl+Shift+p),输入task,选择 配置任务
2.这里选择的g++
3.以上会在.vscode文件夹下,生成一个tasks.json的配置文件,和默认配置.由于我已经配置过了,这就是我修改过的配置。
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "test", //任务名称
"type": "shell", //类型
"command": "cd /home/simpole/ATP_V1.0.0/HiAutoTestServer/ && make && ./bin/HiAutoTestServer stop", //命令
"problemMatcher": []
},
{
"label": "test Debug",
"type": "shell",
"command": "cd /home/simpole/ATP_V1.0.0/HiAutoTestServer/ && make && ./bin/HiAutoTestServer stop",
"problemMatcher": []
}
]
}
4.快捷键(Ctrl+Shift+p),输入task,选择运行任务,就会执行。
5.点击刚配置好的任务,就会执行编译了
二、调试配置
1.点击运行,选择添加配置
2.选择C/C++: (gdb) 启动,会生成launch.json配置文件,和配置模版。下面我已经修改过了,直接复制修改即可。
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "test", //名称随便取
"type": "cppdbg", //调试类型
"request": "launch", //请求配置类型
"program": "/home/simpole/ATP_V1.0.0/HiAutoTestServer/bin/HiAutoTestServer", //可执行程序完整路径(包含程序名称)
"args": ["start", "-p", "192.168.1.120"],//可执行程序后面跟的参数,没有就不填
"stopAtEntry": false,
"cwd": "/home/simpole/ATP_V1.0.0/HiAutoTestServer/bin/", //可执行程序完整路径(不包含程序名称)
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "test Debug", //task 任务名称(与tasks.json中名称一致)
"miDebuggerPath": "/usr/bin/gdb" //gdb完整路径
}
]
}
4.点击运行,选择刚配置的调试任务,F5,就可以开始调试了,断点怎么设置就不说了,在程序运行过程中可以通过快捷键也可以通过框选出来的部分进行单步调试