From 4cca6ca804ea61ab2e096f2e9017a244fb8f7283 Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Wed, 17 Jun 2020 00:34:59 -0500 Subject: [PATCH] Attempt to get debugging working --- .vscode/launch.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 616c364..489a369 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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",