I am very new to coding and am trying to learn C with the use of CodeLite 17.0.0 on MacOS 12 Monterey 12.6.6
I followed the steps on the Debug Adapter Client page of CodeLite to download the llvm through brew but when I run lldb I get a time out error which, per the title, says:
"CodeLte - Debug Adapter Client Failed to Connect to DAP Server"
I have no clue how to fix this. I have redownloaded Codelite and made sure LLDB is up to date. My settings I believe are the same as shown here:
https://docs.codelite.org/plugins/dap/#the-configuration-dialog
but I do not know where this error is being generated from and would love some help so I can use the compiler and continue on with the course I'm taking.
Thx
I was expecting the LLDB Debugger to run as shown in the class video but found I cannot get it to function.
CodeLite does not invoke
lldbdirectly, instead, it launches the dap client (Debug Adapter Protocol Client) - in your case,lldb-vscode.You should install
lldb-vscodeas mentioned here: https://docs.codelite.org/plugins/dap/#lldb-vscodeOnce installed, make sure CodeLite knows where to find it:
Settings -> Debug Adapter Client)lldb-vscodeexistsHTH