this repo has no description
1{
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7 {
8 "type": "lldb",
9 "request": "launch",
10 "name": "Debug darling-coredump",
11 "program": "${workspaceFolder}/build/src/hosttools/darling-coredump",
12 "args": ["${input:linuxCoreDumpFileName}"],
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": ""
37 }
38 ]
39}