blob: c648e09dedda0ede1d086f8b954499e940eb9fc8 [file] [log] [blame]
Jason Molendaa10929d2012-11-09 06:14:39 +00001<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5<link href="style.css" rel="stylesheet" type="text/css" />
6<title>LLDB Status</title>
7</head>
8
9<body>
10 <div class="www_title">
11 The <strong>LLDB</strong> Debugger
12 </div>
13
14<div id="container">
15 <div id="content">
16 <!--#include virtual="sidebar.incl"-->
17
18 <div id="middle">
19 <div class="post">
20 <h1 class ="postheader">Mac OS X Status</h1>
21 <div class="postcontent">
22
23 <p>LLDB has matured a lot in the last year and can be used for
24 C, C++ and Objective C development for x86_64, i386 and ARM debugging.
25 The entire public API is exposed though a framework on Mac OS X which
26 is used by Xcode, the lldb command line tool, and can also be used by
27 Python. The entire public API is exposed through script bridging which
28 allows LLDB to use an embedded Python script interpreter, as well as
29 having a Python module named "lldb" which can be used from Python
30 on the command line. This allows debug sessions to be scripted. It also
31 allows powerful debugging actions to be created and attached to a variety
32 of debugging workflows.</p>
33 </div>
34 <h1 class ="postheader">Linux Status</h1>
35 <div class="postcontent">
36 <p> LLDB is improving on Linux. While the debugserver is not ported
37 (to enable remote debugging) and there are some stability issues, most
38 of the basic functionality, including the Python API and the commandline tool,
39 are working on i386/x86_64 architectures. ARM architectures on Linux are untested.
40 For more details, see the Features by OS section below.
41 </div>
42 <h1 class ="postheader">Features by OS</h1>
43 <div class="postcontent">
44 <p> The table below shows a summary of the features that are available
45 on several platforms. In addition to Linux and Mac OS X, LLDB is also
46 known to work on FreeBSD. Windows support is under development.
47 <table border="1">
48 <tr>
49 <th>Feature</th>
50 <th>Linux<br>(i386 and x86_64)</th>
51 <th>Mac OS X (i386/x86_64 and ARM/Thumb)</th>
52 </tr>
53 <tr>
54 <td>Backtracing</td>
55 <td>OK</td>
56 <td>OK</td>
57 </tr>
58 <tr>
59 <td>Breakpoints
60 <ul>
61 <li>source-line
62 <li>symbolic
63 <li>C++ mangled names
64 <li>module scoping
65 </ul>
66 </td>
Daniel Malea1fc46d22013-01-10 23:13:06 +000067 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +000068 <td>OK</td>
69 </tr>
70 <tr>
71 <td>C++11:
72 <ul>
73 <li>function access
74 <li>template support
75 <li>dynamic types
76 </ul></td>
77 <td>OK</td>
78 <td>OK</td>
79 </tr>
80 <tr>
81 <td>Commandline lldb tool</td>
82 <td>OK</td>
83 <td>OK</td>
84 </tr>
85 <tr>
86 <td>Debugserver (remote debugging)</td>
87 <td>Not ported</td>
88 <td>OK</td>
89 </tr>
90 <tr>
91 <td>Disassembly</td>
92 <td>OK</td>
93 <td>OK</td>
94 </tr>
95 <tr>
96 <td>Expression evaluation</td>
97 <td>Works with some bugs</td>
98 <td>OK</td>
99 </tr>
100 <tr>
101 <td>Objective-C 2.0:
102 <ul>
103 <li>printing properties
104 <li>synthetic properties
105 <li>expressions
106 <li>KVO
107 <li>dynamic types
108 <li>dot syntax
109 <li>runtime data
110 <li>stepping into/over
111 <li>printing the description of an object ("po")
112 </ul></td>
Jason Molendabf692ae2012-11-09 06:16:12 +0000113 <td>Not applicable</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000114 <td>OK</td>
115 </tr>
116 <tr>
117 <td>Process control
118 <ul>
119 <li>launch
120 <li>attach
121 <li>continue
122 </ul>
123 </td>
124 <td>OK except attach-by-name </td>
125 <td>OK</td>
126 </tr>
127 <tr>
128 <td>Public Python API</td>
129 <td>OK</td>
130 <td>OK</td>
131 </tr>
132 <tr>
133 <td>Script bridging</td>
134 <td>OK</td>
135 <td>OK</td>
136 </tr>
137 <tr>
138 <td>Symbol reading and object file introspection</td>
139 <td>OK</td>
140 <td>OK</td>
141 </tr>
142 <tr>
143 <td>Thread inspection and stepping</td>
144 <td>OK for single thread (no multi-threaded support)</td>
145 <td>OK</td>
146 </tr>
147 <tr>
148 <td>Watchpoints</td>
149 <td>Broken</td>
150 <td>OK</td>
151 </tr>
152 </table>
153 </div>
154 <div class="postfooter"></div>
155 </div>
156 </div>
157 </div>
158</div>
159</body>
160</html>