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",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"type": "gdb",
|
"name": "g++ build and debug active file",
|
||||||
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Launch Program",
|
"program": "${workspaceFolder}/build/bin/demo",
|
||||||
"target": "${workspaceFolder}/build/bin/demo",
|
"args": [],
|
||||||
|
"stopAtEntry": false,
|
||||||
"cwd": "${workspaceFolder}",
|
"cwd": "${workspaceFolder}",
|
||||||
"valuesFormatting": "parseText",
|
"environment": [],
|
||||||
|
"externalConsole": false,
|
||||||
|
"MIMode": "gdb",
|
||||||
|
"setupCommands": [
|
||||||
|
{
|
||||||
|
"description": "Enable pretty-printing for gdb",
|
||||||
|
"text": "-enable-pretty-printing",
|
||||||
|
"ignoreFailures": true
|
||||||
|
}
|
||||||
|
],
|
||||||
"preLaunchTask": "Build"
|
"preLaunchTask": "Build"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user