I use codelldb extension in vscode. Before, this configuration in settings.json worked:
{
"name": "LLDB coredump",
"type": "lldb",
"request": "custom",
"targetCreateCommands": [
"target create -c $COREDUMP_FILE"
]
},
However, now it shows Value is deprecated(2) here and this config item can not be run.
So I want to know how to modify the config item for debugging using lldb?
btw, launch and attach works well like they did before:
{
"name": "LLDB attach",
"type": "lldb",
"request": "attach",
"program": "...",
"pid": "${command:pickMyProcess}"
},
{
"name": "LLDB launch",
"type": "lldb",
"request": "launch",
"program": "...",
"cwd": "${workspaceFolder}",
"env": {
...
}
},
There's only the debug coredump request that doesn't work.