mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-08 23:08:08 +00:00
debugging extras
This commit is contained in:
@@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<StepFilter xmlns="http://schemas.microsoft.com/vstudio/debugger/natstepfilter/2010">
|
||||||
|
<Function>
|
||||||
|
<Name>__asan_memcpy</Name>
|
||||||
|
<Action>NoStepInto</Action>
|
||||||
|
</Function>
|
||||||
|
</StepFilter>
|
||||||
Reference in New Issue
Block a user