When I try to debug my program in VS Code using webfreak's debug, it does not work at all.

I immediatly get the following error message in the debug console:

undefinedMI: Error: Driver. LLDB Debugger.
MI: Error: Driver Manager. Driver 'Machine Interface Driver Version: 1.0.0.9' (ID:'MIDriver') initialise failed. Driver. LLDB Debugger.


My debug configuration (launch.json):
{
   "version": "0.2.0",
   "configurations": [
       {
           "name": "Debug",
           "type": "lldb-mi",
           "request": "launch",
           "target": "./bin/executable",
           "cwd": "${workspaceRoot}"
       }
   ]
}

Reply via email to