vscode 配置 c /c++ debug 运行环境
作者:互联网
vscode 配置 c,c++ debug 运行环境
这里我们要配置 tasks.json ,最好搞一个模板
ctrl shift + p, 打开 open user tasks
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "echo helloworld",
"type": "shell",
"command": "echo aaa",
"problemMatcher": [],
"group": "test"
},
{
"type": "shell",
"label": "gcc default",
"command": "gcc",
"args": [
"-I${workspaceFolder}/src/include",
"${file}",
"-g", // -g 生成调试信息,不然 无法使用断点
"-o",
"${fileDirname}/${fileBasenameNoExtension}.out"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "调试器生成的任务。"
},
{
"type": "shell",
"label": "gcc",
"command": "gcc",
"args": [
"-I${workspaceFolder}/src/include",
"${file}",
"-g", // -g 生成调试信息,不然 无法使用断点
"-o",
"${fileDirname}/${fileBasenameNoExtension}.out"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "test",
"isDefault": true
},
"detail": "调试器生成的任务。"
},
{
"type": "shell",
"label": "g++",
"command": "g++",
"args": [
"-I${workspaceFolder}/src/include",
"${file}",
"-g", // -g 生成调试信息,不然 无法使用断点
"-o",
"${fileDirname}/${fileBasenameNoExtension}.out"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "调试器生成的任务。"
}
]
}
这是我写好了的内容,
可以将这些东西同步到gist,换一台电脑也可以用
点击 launch.json
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "run c file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}.out",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "将反汇编风格设置为 Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
],
"preLaunchTask": "gcc"
}
]
}
preLaunchTask 引用的 就是 tasks.json 里面的文件
这样你写一次后,以后就不需要重复写了。
标签:gcc,tasks,group,vscode,true,c++,fileDirname,debug,type 来源: https://www.cnblogs.com/lyr-2000/p/16396719.html