Reverted to Microsoft C/C++ extension. Native debug isn't currently

working well enough.
This commit is contained in:
andrew 2020-11-18 10:34:49 +00:00
parent af4703ea5e
commit 3696c1aaed
2 changed files with 16 additions and 5 deletions

View File

@ -1,3 +1,3 @@
{
"recommendations": ["webfreak.debug"]
"recommendations": ["ms-vscode.cpptools"]
}

19
.vscode/launch.json vendored
View File

@ -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"
}
]