]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/tools/lldb-mi/MIReadMe.txt
Fix a memory leak in if_delgroups() introduced in r334118.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / tools / lldb-mi / MIReadMe.txt
1 ========================================================================
2     The MI Driver - LLDB Machine Interface V2 (MI)  Project Overview
3 ========================================================================
4
5 The MI Driver is a stand alone executable that either be used via a 
6 client i.e. Eclipse or directly from the command line. 
7
8 For help information on using the MI driver type at the command line:
9
10         lldb-mi --interpreter --help
11
12 A blog about the MI Driver is available on CodePlay's website. Although it may not be
13 completely accurate after the recent changes in lldb-mi.
14 http://www.codeplay.com/portal/lldb-mi-driver---part-1-introduction
15
16 In MI mode and invoked with --log option, lldb-mi generates lldb-mi-log.txt 
17 This file keeps a history of the MI Driver's activity for one session. It is
18 used to aid the debugging of the MI Driver. It also gives warnings about
19 command's which do not support certain argument or options.  
20
21 Note any command or text sent to the MI Driver in MI mode that is not a command 
22 registered in the MI Driver's Command Factory will be rejected and an error message
23 will be generated.
24
25 All the files prefix with MI are specifically for the MI driver code only.
26 File MIDriverMain.cpp contains the executables main() function.
27
28 =========================================================================
29 Current limitations:
30 1. Not all commands and their options have been implemented. Please see
31 the source code for details.
32 2. LLDB-MI may have additional arguments not used in GDB MI. Please see
33 MIExtensions.txt
34
35 =========================================================================
36 The MI Driver build configuration:
37 MICmnConfig.h defines various preprocessor build options.