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