For macOS users trying to debug with locally installed VS Code (if it shows the message Configured debug type 'lldb' is not supported.
):
Replace in .vscode/launch.json
all the
type: "lldb",
with
type: "cppdbg",
(You will need to have Xcode installed)
5 Likes
reha01
#2
after i replace all the “lldb” with “cppdbg”, it still says “Property env is not allowed”. How do i fix this?
The “env” property is not that relevant in our case. Debugging worked for me even though I had the same warning.