Skip to content

Instantly share code, notes, and snippets.

@jaredmdobson
Last active April 9, 2018 04:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaredmdobson/e0d3c0ef2f6ba387a2541fb60fcc0a2b to your computer and use it in GitHub Desktop.
Save jaredmdobson/e0d3c0ef2f6ba387a2541fb60fcc0a2b to your computer and use it in GitHub Desktop.
VS Code Rust LLDB Debug Launch.json 2018
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/${workspaceRootFolderName}",
"args": [],
"preLaunchTask": "build"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment