Closed
Description
Which OS: MacOS High Sierra 10.13.6
Which extension version: CodeLLDB 0.8.9
Which LLDB version:
$ lldb --version
lldb-900.0.45
Swift-4.0
Which VSCode version: Version 1.27.0-insider (1.27.0-insider)
Project https://github.com/jasonwilliams/boa
What is the problem and how did you get there:
Ive been setting up CodeLLDB to debug my Rust code, here is my launch.json
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"program": "${workspaceFolder}/target/debug/bin",
"args": [],
"cwd": "${workspaceFolder}",
"sourceLanguages": [
"rust"
],
"stopOnEntry": true
},
It seems to run without any errors, but the breakpoints don't get triggered, im all out of ideas.
I think it has something to do with my version of LLDB.