debugging extras

This commit is contained in:
Nikita Smith
2026-03-04 11:28:53 -08:00
parent 4312ee14fd
commit 57cbd020a1
2 changed files with 35 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"type": "cppdbg",
"name": "raddbg",
"request": "launch",
"project": "c://windows//system32//cmd.exe",
"program": "build/raddbg",
"args": [ "-no_stdout_buffer" ],
"stopAtEntry": false,
"cwd": ".",
"environment": [],
"externalConsole": true,
"pipeTransport": {
"pipeCwd": "${workspaceRoot}",
"pipeProgram": "wsl",
"pipeArgs": [ "${debuggerCommand}" ]
},
"setupCommands":
[
{ "text": "handle SIGUSR1 nostop" }
],
"MIMode": "gdb"
}
]
}