Attempt to get debugging working

This commit is contained in:
SeanOMik 2020-06-17 00:34:59 -05:00
parent 2bf20854d6
commit 4cca6ca804
No known key found for this signature in database
GPG Key ID: FA4D55AC05268A88
1 changed files with 8 additions and 5 deletions

13
.vscode/launch.json vendored
View File

@ -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",