Reverted to Microsoft C/C++ extension. Native debug isn't currently
working well enough.
This commit is contained in:
parent
af4703ea5e
commit
3696c1aaed
2
.vscode/extensions.json
vendored
2
.vscode/extensions.json
vendored
@ -1,3 +1,3 @@
|
||||
{
|
||||
"recommendations": ["webfreak.debug"]
|
||||
"recommendations": ["ms-vscode.cpptools"]
|
||||
}
|
||||
|
||||
19
.vscode/launch.json
vendored
19
.vscode/launch.json
vendored
@ -2,12 +2,23 @@
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "gdb",
|
||||
"name": "g++ build and debug active file",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"name": "Launch Program",
|
||||
"target": "${workspaceFolder}/build/bin/demo",
|
||||
"program": "${workspaceFolder}/build/bin/demo",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}",
|
||||
"valuesFormatting": "parseText",
|
||||
"environment": [],
|
||||
"externalConsole": false,
|
||||
"MIMode": "gdb",
|
||||
"setupCommands": [
|
||||
{
|
||||
"description": "Enable pretty-printing for gdb",
|
||||
"text": "-enable-pretty-printing",
|
||||
"ignoreFailures": true
|
||||
}
|
||||
],
|
||||
"preLaunchTask": "Build"
|
||||
}
|
||||
]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user