Skip to content

Commit

Permalink
Use lldb instead of cppdbg in launch.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
mortinger91 committed Apr 18, 2023
1 parent d4c4086 commit 0551590
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,12 @@
"configurations": [
{
"name": "DEBUG",
"type": "cppdbg",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/build/debug/bin/cpp-cmake-template",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "build_debug",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}

0 comments on commit 0551590

Please sign in to comment.