From fc0b0d15866cd45d42f888d5f6b41fbc7a4db63c Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Thu, 7 May 2026 17:07:44 -0700 Subject: [PATCH] more targets --- launch.vs.json | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/launch.vs.json b/launch.vs.json index e5caf1c4..a9cfe1d9 100644 --- a/launch.vs.json +++ b/launch.vs.json @@ -9,7 +9,53 @@ "project": "c://windows//system32//cmd.exe", "cwd": "build/", "program": "torture", - "args": [ "basic_stepping_test-c" ], + "args": [ "d2r_checksums" ], + "stopAtEntry": false, + "environment": [], + "externalConsole": false, + "pipeTransport": { + "pipeCwd": "${workspaceRoot}", + "pipeProgram": "wsl", + "pipeArgs": [ "${debuggerCommand}" ] + }, + "setupCommands": [ + { "text": "-gdb-set follow-fork-mode parent" }, + { "text": "-gdb-set detach-on-fork on" }, + { "text": "handle SIGUSR1 nostop" } + ], + "MIMode": "gdb" + }, + { + "type": "cppdbg", + "name": "launch - radbin", + "request": "launch", + "project": "c://windows//system32//cmd.exe", + "cwd": "build/", + "program": "radbin", + "args": [ "-voff2line", "-voff:0x1000", "torture_artifacts/d2r_line_table/a.rdi" ], + "stopAtEntry": false, + "environment": [], + "externalConsole": false, + "pipeTransport": { + "pipeCwd": "${workspaceRoot}", + "pipeProgram": "wsl", + "pipeArgs": [ "${debuggerCommand}" ] + }, + "setupCommands": [ + { "text": "-gdb-set follow-fork-mode parent" }, + { "text": "-gdb-set detach-on-fork on" }, + { "text": "handle SIGUSR1 nostop" } + ], + "MIMode": "gdb" + }, + { + "type": "cppdbg", + "name": "launch - radlink", + "request": "launch", + "project": "c://windows//system32//cmd.exe", + "cwd": "/mnt/c/devel/raddebugger/build/torture_artifacts/debug_p_sig_mismatch", + "program": "/mnt/c/devel/raddebugger/build/radlink", + "args": [ "/subsystem:console", "/entry:entry", "/out:a.exe", "/debug:full", "a.obj", "b.obj", "entry.obj" ], "stopAtEntry": false, "environment": [], "externalConsole": false,