Does this project support running only the Debug Adapter server? #807
-
I am searching for a Debug Adapter server to integrate lldb with Nova, which supports the Debug Adapter Protocol. From my understanding, this project provides such a server. Can I run that server standalone, without the VSCode client extension? |
Beta Was this translation helpful? Give feedback.
Answered by
puremourning
Oct 31, 2022
Replies: 1 comment
-
Yes, just run You have to translate the user manual a little because there are things the vscode extension does (such as translate request: custom to request: launch, custom: true), but mostly it just works. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
flyx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, just run
codelldb --port <some port>
then connect to<some port>
and speak DAP.You have to translate the user manual a little because there are things the vscode extension does (such as translate request: custom to request: launch, custom: true), but mostly it just works.