Skip to content

Instantly share code, notes, and snippets.

@ilovelili
Created May 5, 2020 10:21
Show Gist options
  • Save ilovelili/b521b2db7d90912e06a95be9b2783834 to your computer and use it in GitHub Desktop.
Save ilovelili/b521b2db7d90912e06a95be9b2783834 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "attach",
"name": "Attach",
"pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
},
{
"name": "Launch",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/vscode_debug_example",
"args": [],
"cwd": "${workspaceRoot}",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment