Visual Studio Extension allowing auto attaching child processes (currently only using codelldb)
For now you need CodeLLDB for it to work
Add "autoAttachChildProcess": true
to launch configuration you want to allow auto attaching
examples:
{
"type": "lldb",
"request": "attach",
"name": "Attach",
"autoAttachChildProcess": true,
"pid": "${command:pickMyProcess}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/a.out",
"args": [],
"cwd": "${workspaceFolder}",
"autoAttachChildProcess": true
}
Working only with codelldb fow now
Initial release of auto attaching codelldb