mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-25 06:31:59 +00:00
[Add] Debug (Linux)
This commit is contained in:
parent
6acdcd5083
commit
a333d24910
25
.vscode/launch.json
vendored
25
.vscode/launch.json
vendored
@ -4,9 +4,30 @@
|
|||||||
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "[Linux] C++ Launch (GDB)",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${fileDirname}/${fileBasenameNoExtension}.exe",
|
||||||
|
"args": [],
|
||||||
|
"stopAtEntry": false,
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"environment": [],
|
||||||
|
"externalConsole": false,
|
||||||
|
"MIMode": "gdb",
|
||||||
|
"miDebuggerPath": "/usr/bin/gdb",
|
||||||
|
"setupCommands": [
|
||||||
|
{
|
||||||
|
"description": "为 gdb 启用整齐打印",
|
||||||
|
"text": "-enable-pretty-printing",
|
||||||
|
"ignoreFailures": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preLaunchTask": "build"
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "C++ Launch (GDB)",
|
"name": "[Windows] C++ Launch (GDB)",
|
||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
|
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
|
||||||
@ -24,7 +45,7 @@
|
|||||||
"ignoreFailures": true
|
"ignoreFailures": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"preLaunchTask": "C/C++: g++.exe build active file"
|
"preLaunchTask": "build"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
36
.vscode/tasks.json
vendored
36
.vscode/tasks.json
vendored
@ -4,7 +4,6 @@
|
|||||||
{
|
{
|
||||||
"label": "build",
|
"label": "build",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
// 编译参数 ggc -g ${file} -o ${fileDirname}${fileBasenameNoExtension}.exe
|
|
||||||
"windows": {
|
"windows": {
|
||||||
"command": "g++",
|
"command": "g++",
|
||||||
"args": [
|
"args": [
|
||||||
@ -15,12 +14,21 @@
|
|||||||
"--save-temps"
|
"--save-temps"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
// 控制台输出的错误信息
|
"linux": {
|
||||||
|
"command": "/usr/bin/g++",
|
||||||
|
"args": [
|
||||||
|
"-g",
|
||||||
|
"\"${file}\"",
|
||||||
|
"-o",
|
||||||
|
"\"${fileDirname}/${fileBasenameNoExtension}.exe\"",
|
||||||
|
"--save-temps"
|
||||||
|
]
|
||||||
|
},
|
||||||
"problemMatcher": {
|
"problemMatcher": {
|
||||||
"owner": "cpp",
|
"owner": "cpp",
|
||||||
"fileLocation": [
|
"fileLocation": [
|
||||||
"relative",
|
"relative",
|
||||||
"." // ${workspaceFolder}
|
"."
|
||||||
],
|
],
|
||||||
"pattern": {
|
"pattern": {
|
||||||
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
|
||||||
@ -35,13 +43,31 @@
|
|||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
},
|
},
|
||||||
// 终端面板配置
|
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"echo": true,
|
"echo": true,
|
||||||
"reveal": "always",
|
"reveal": "always",
|
||||||
"focus": false,
|
"focus": false,
|
||||||
"panel": "shared" // 控制面板是否在任务中共享面板,shared=共享,new=新面板
|
"panel": "shared"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// ,
|
||||||
|
// {
|
||||||
|
// "type": "shell",
|
||||||
|
// "label": "C/C++: g++ build active file",
|
||||||
|
// "command": "/usr/bin/g++",
|
||||||
|
// "args": [
|
||||||
|
// "-g",
|
||||||
|
// "${file}",
|
||||||
|
// "-o",
|
||||||
|
// "${fileDirname}/${fileBasenameNoExtension}"
|
||||||
|
// ],
|
||||||
|
// "options": {
|
||||||
|
// "cwd": "${workspaceFolder}"
|
||||||
|
// },
|
||||||
|
// "problemMatcher": [
|
||||||
|
// "$gcc"
|
||||||
|
// ],
|
||||||
|
// "group": "build"
|
||||||
|
// }
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user