How to create new debugger UI and use custom lldb in CLion for C++ projects ?
Basically I have two requirements to debug C++ program in CLion -
1 I need to use my custom lldb which is not supported by CLion as it only supports bundled lldb comes with CLion.
- I need to have my custom debug window. Currently when you debug any c++ program, you get a default debug window titled "Debug:" , where currently debugged session is shown as a tab in the debug window. We have different tabbed views for Frames, console, variables, watches, etc with in that session. I want to completely remove this debug window with my own designed window.
So can I fulfill above requirements through a plugin as CLion is not open sourced so plugin is the only option ?
If there exist anyother way please let me know.
Please sign in to leave a comment.
+1 for the first requirement. I would like to add custom lldb executable for CLion in FreeBSD (for installation I followed steps in article https://intellij-support.jetbrains.com/hc/en-us/articles/206525024-How-to-start-CLion-on-FreeBSD-). Since there are no official builds for FreeBSD, seems that currently there is no such thing as bundled lldb for FreeBSD .