brintos

brintos / llvm-project-archived public Read only

0
0
Text · 908 B · 7ba51ce Raw
37 lines · plain
1 2LLDB (Terminal) User Interface3------------------------------4 5This 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:6 7$ export PYTHONPATH=/path/to/lldb/module8 9Then, run the lui.py. To load a core file:10$ ./lui.py --core core11 12To create a target from an executable:13$ ./lui.py /bin/echo "hello world"14 15To attach to a running process:16$ ./lui.py --attach <pid>17 18 19Known Issues20------------211. Resizing the terminal will most likely cause lui to crash.222. Missing paging in command-window233. Only minimal testing (on Ubuntu Linux x86_64)24 25Missing Features26----------------27- stdin/stdout/stderr windows28- memory window29- backtrace window30- threads window31- tab-completion32- syntax-highlighting (via pygments library)33- (local) variables window34- registers window35- disassembly window36- custom layout37