Skip to content

Instantly share code, notes, and snippets.

@blumus
Created May 13, 2025 10:16
Show Gist options
  • Save blumus/f543fe1c2fc68b8fa7bdd10716519166 to your computer and use it in GitHub Desktop.
Save blumus/f543fe1c2fc68b8fa7bdd10716519166 to your computer and use it in GitHub Desktop.
// launch.json
// install CodeLLDB vscode extention by Vadim Chugunov
{
"version": "2.0.0",
"configurations": [
{
"name": "C/C++: g++ build and debug active file",
"type": "lldb",
"request": "launch",
"program":"${workspaceRoot}/${fileDirnameBasename}",
"args": [],
"cwd": "${workspaceRoot}",
//"preLaunchTask": "Make"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment