From 05fc085dc6831000757ba9ce5e77a3e2c7ef671b Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Wed, 6 May 2026 16:39:42 -0700 Subject: [PATCH] new launch target --- launch.vs.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/launch.vs.json b/launch.vs.json index 1b86c5d8..e5caf1c4 100644 --- a/launch.vs.json +++ b/launch.vs.json @@ -4,7 +4,7 @@ "configurations": [ { "type": "cppdbg", - "name": "raddbg", + "name": "launch - torture", "request": "launch", "project": "c://windows//system32//cmd.exe", "cwd": "build/", @@ -22,6 +22,26 @@ { "text": "handle SIGUSR1 nostop" } ], "MIMode": "gdb" + }, + { + "type": "cppdbg", + "name": "launch - raddbg", + "request": "launch", + "project": "c://windows//system32//cmd.exe", + "cwd": "build/", + "program": "/mnt/c/devel/raddebugger/build/raddbg", + //"processId": "65821", + "environment": [], + "externalConsole": false, + "pipeTransport": { + "pipeCwd": "${workspaceRoot}", + "pipeProgram": "wsl", + "pipeArgs": [ "${debuggerCommand}" ] + }, + "setupCommands": [ + { "text": "handle SIGUSR1 nostop" } + ], + "MIMode": "gdb" } ] }