Skip to content

Instantly share code, notes, and snippets.

@adamnemecek
Last active March 17, 2023 13:15
Show Gist options
  • Save adamnemecek/c10784b7d88d2ed66b760236ca19863f to your computer and use it in GitHub Desktop.
Save adamnemecek/c10784b7d88d2ed66b760236ca19863f to your computer and use it in GitHub Desktop.
VSCode Rust debugging on macOS config
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceRoot}/target/debug/${workspaceRootFolderName}",
"args": [],
"cwd": "${workspaceRoot}",
"sourceLanguages": [
"rust"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment