When trying to debug my C++ code in vscode with the CodeLLDB extension, I get the following error:
Cannot launch 'path_to_executable': Sending vRun packet failed.
Other debugger work fine.
The extension version is 1.11.1
I am running the code in an Ubuntu 22.04 aarch64 based dev container with glibc 2.35
My device runs macOS.
My launch.json
{
"name": "(lldb) debug main",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/core/build/main_executable",
"args": []
}