hanchenye-llvm-project/lldb/utils/lui
Wei Pan 133ac8714d LUI: Fix some issues causing crashes in the source view
llvm-svn: 193217
2013-10-23 01:18:21 +00:00
..
Readme
breakwin.py lui: clean up breakpoint window, and allow multi-line list items 2013-10-16 02:01:41 +00:00
commandwin.py lui: enable tab completion in command window 2013-10-16 17:08:55 +00:00
cui.py A couple of small visual improvements for lui 2013-10-16 03:01:04 +00:00
debuggerdriver.py
eventwin.py
lldbutil.py
lui.py
sandbox.py Add a ListWin to cui to show scrollabled lists 2013-10-16 02:00:21 +00:00
sourcewin.py LUI: Fix some issues causing crashes in the source view 2013-10-23 01:18:21 +00:00
statuswin.py Add a ListWin to cui to show scrollabled lists 2013-10-16 02:00:21 +00:00

Readme

LLDB (Terminal) User Interface
------------------------------

This directory contains the curses user interface for LLDB. To use it, ensure Python can find your lldb module. You may have to modify PYTHONPATH for that purpose:

$ export PYTHONPATH=/path/to/lldb/module

Then, run the lui.py. To load a core file:
$ ./lui.py --core core

To create a target from an executable:
$ ./lui.py /bin/echo "hello world"

To attach to a running process:
$ ./lui.py --attach <pid>


Known Issues
------------
1. Resizing the terminal will most likely cause lui to crash.
2. Missing paging in command-window
3. Only minimal testing (on Ubuntu Linux x86_64)

Missing Features
----------------
- stdin/stdout/stderr windows
- memory window
- backtrace window
- threads window
- tab-completion
- syntax-highlighting (via pygments library)
- (local) variables window
- registers window
- disassembly window
- custom layout