Skip to content

Instantly share code, notes, and snippets.

@apinstein
Created October 13, 2021 01:57
Show Gist options
  • Save apinstein/681096685177a4fe65312703b42dd983 to your computer and use it in GitHub Desktop.
Save apinstein/681096685177a4fe65312703b42dd983 to your computer and use it in GitHub Desktop.
VSCode llvm debug configuration for php extensions on mac
{
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "attach",
"name": "Attach to running process",
"pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
},
]
},
"settings": {
"lldb.library": "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB"
},
"folders": [
{
"path": "."
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment