Skip to content

Instantly share code, notes, and snippets.

@unlimish
Last active February 3, 2021 10:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unlimish/baf2ba62cdc0044b3fcb5c897653a6d5 to your computer and use it in GitHub Desktop.
Save unlimish/baf2ba62cdc0044b3fcb5c897653a6d5 to your computer and use it in GitHub Desktop.
VScode lldb settings
{
"version": "0.2.0",
"configurations": [
{
"name": "c_debug",
"type": "lldb",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}.out",
"args": [],
"cwd": "${fileDirname}",
"preLaunchTask": "c_build"
}
]
}
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "c_build",
"command": "gcc",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}.out"
],
"group": "build"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment