Skip to content

Commit

Permalink
Add jarvis debug configs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Dec 3, 2024
1 parent 68f8ae3 commit 2827423
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "runtime-dbg",
"type": "cppdbg",
"request": "launch",
"program": "echo",
"miDebuggerServerAddress": "localhost:4000",
"miDebuggerPath": "/usr/bin/gdb",
"cwd": "${workspaceFolder}",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"externalConsole": false,
"logging": {
"engineLogging": true
}
},
{
"name": "app-dbg",
"type": "cppdbg",
"request": "launch",
"program": "echo",
"miDebuggerServerAddress": "localhost:4001",
"miDebuggerPath": "/usr/bin/gdb",
"cwd": "${workspaceFolder}",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"externalConsole": false,
"logging": {
"engineLogging": true
}
}
]
}

0 comments on commit 2827423

Please sign in to comment.