Skip to content

Instantly share code, notes, and snippets.

@veghead
Created March 9, 2024 21:21
Show Gist options
  • Save veghead/7c8cd04f81acebd2ff07993d5b21c202 to your computer and use it in GitHub Desktop.
Save veghead/7c8cd04f81acebd2ff07993d5b21c202 to your computer and use it in GitHub Desktop.
Launch config for getting VSCode to use LLDB as a debugger on a Mac (ceedling_lldb), with Ceedling Text Explorer.
{
"name": "ceedling_lldb",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/test/out/${command:ceedlingExplorer.debugTestExecutable}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment