Try to get debugger working.
This commit is contained in:
parent
4a6f941683
commit
7f7717ce63
|
@ -8,9 +8,22 @@
|
||||||
"name": "Debug Nim Project",
|
"name": "Debug Nim Project",
|
||||||
"type": "gdb",
|
"type": "gdb",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"target": "./src/client.exe",
|
"program": "${workspaceFolder}/src/client.exe",
|
||||||
"cwd": "${workspaceRoot}",
|
"args": [],
|
||||||
"valuesFormatting": "parseText"
|
"stopAtEntry": false,
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"environment": [],
|
||||||
|
"externalConsole": false,
|
||||||
|
"valuesFormatting": "parseText",
|
||||||
|
"MIMode": "gdb",
|
||||||
|
"miDebuggerPath": "D:/Code/nim/nim-1.2.0/dist/mingw64/bin/gdb.exe",
|
||||||
|
"setupCommands": [
|
||||||
|
{
|
||||||
|
"description": "Enable pretty-printing for gdb",
|
||||||
|
"text": "-enable-pretty-printing",
|
||||||
|
"ignoreFailures": true
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
Reference in New Issue