mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-14 09:18:09 +00:00
29 lines
649 B
JSON
29 lines
649 B
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
}
|