Created
October 13, 2021 01:57
-
-
Save apinstein/681096685177a4fe65312703b42dd983 to your computer and use it in GitHub Desktop.
VSCode llvm debug configuration for php extensions on mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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