Unable to start codelldb (exit code 1) #492
asmodeus812
started this conversation in
General
Replies: 1 comment 2 replies
-
You redirect the stderr output to the repl. Is there any output in it? Moving this to discussion because its a configuration issue and unlikely a client bug |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Debug adapter definition and debug configuration
I downloaded the codelldb binaries from here https://github.com/vadimcn/vscode-lldb/releases/latest/download/codelldb-x86_64-linux.vsix and did unzip CodeLLDB.zip. Then configured nvim dap as specified in the main page using the following configurations
`
nvim_dap.adapters.codelldb = function(on_adapter)
local stdout = vim.loop.new_pipe(false)
local stderr = vim.loop.new_pipe(false)
`
Debug adapter version
Latest
Steps to Reproduce
Expected Result
The application is executed and entrypoint triggered.
Actual Result
I receive error message codelldb exited with code 1, tirggered from the following line in the configuration itslef -> print("codelldb exited with code", code)
Beta Was this translation helpful? Give feedback.
All reactions