this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add Configuration To Load Core Dumps In VSCode Debugger

Thomas A e56511bd b23cfe93

+24 -1
+24 -1
.vscode/launch.json
··· 9 9 "request": "launch", 10 10 "name": "Debug darling-coredump", 11 11 "program": "${workspaceFolder}/build/src/hosttools/darling-coredump", 12 - "args": ["core_dump"], 12 + "args": ["${input:linuxCoreDumpFileName}"], 13 13 "cwd": "${workspaceFolder}" 14 + }, 15 + // Based on https://stackoverflow.com/a/57848966 16 + { 17 + "type": "lldb", 18 + "request": "custom", 19 + "name": "Open Darling Core Dump", 20 + "initCommands": [ 21 + "target create -c ${input:convertedCoreDumpFileName}" 22 + ] 23 + } 24 + ], 25 + "inputs": [ 26 + { 27 + "id": "linuxCoreDumpFileName", 28 + "type": "promptString", 29 + "description": "Enter the path to the core dump that needs to be converted", 30 + "default": "" 31 + }, 32 + { 33 + "id": "convertedCoreDumpFileName", 34 + "type": "promptString", 35 + "description": "Enter the path to the Darling core dump", 36 + "default": "" 14 37 } 15 38 ] 16 39 }