Attempt to get debugging working
This commit is contained in:
parent
2bf20854d6
commit
4cca6ca804
|
@ -5,14 +5,17 @@
|
|||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "(gdb) Attach",
|
||||
"name": "(gdb) Launch",
|
||||
"type": "cppdbg",
|
||||
"request": "attach",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/src/client.exe",
|
||||
"processId": "${command:pickProcess}",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}",
|
||||
"environment": [],
|
||||
"externalConsole": false,
|
||||
"MIMode": "gdb",
|
||||
"miDebuggerPath": "/path/to/gdb",
|
||||
"preLaunchTask": "Run client.nim",
|
||||
"miDebuggerPath": "C:/mingw/bin/gdb.exe",
|
||||
"setupCommands": [
|
||||
{
|
||||
"description": "Enable pretty-printing for gdb",
|
||||
|
|
Reference in New Issue