zmeadows / lldbg

A lightweight native GUI for LLDB.
MIT License
138 stars 14 forks source link
c clang cpp debugger gcc gdb gui imgui linux lldb llvm macos osx unix

This is an alpha-stage native GUI for lldb which is currently about 60% usable. Right now you probably shouldn't attempt to use it unless you want to contribute to the development in some way, either directly or by submitting issues. The basic goal is to provide vim/emacs users on linux/macOS with a lightweight, easy-to-compile, easy-to-use likeness of what you would see in a full-featured IDE debugger interface.

Primary goals are:

Build

# Tell cmake to use clang as the compiler
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++

cd lldbg
mkdir build
cd build
cmake ..
cmake --build . --parallel N (where N = # of CPU cores to use)

alt text