Created
May 5, 2020 10:21
-
-
Save ilovelili/b521b2db7d90912e06a95be9b2783834 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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