diff --git a/lldb/www/lldb-gdb.html b/lldb/www/lldb-gdb.html index 8e58a9a822fc..7e8a11851371 100755 --- a/lldb/www/lldb-gdb.html +++ b/lldb/www/lldb-gdb.html @@ -942,7 +942,7 @@ (gdb) info malloc 0x10010d680
It is often much easier to specify the actual load location of each section by name. Crash logs on Mac OS X have a Binary Images section that specifies - that address of the __TEXT segment for each binary. Specifying a slide requires - requires that you first find the original (file) address for the __TEXT - segment, and subtract the two values. + that address of the __TEXT segment for each binary. Specifying a slide requires + requires that you first find the original (file) address for the __TEXT + segment, and subtract the two values. If you specify the address of the __TEXT segment with "target modules load section address", you don't need to do any calculations. To specify the load addresses of sections we can specify one or more section name + address pairs @@ -298,7 +298,7 @@ if target:
This module installs a new "crashlog" command into the lldb command interpreter so that you can use it to parse and symbolicate Mac OS X crash logs:
-(lldb) script import lldb.macosx.crashlog
+(lldb) command script import lldb.macosx.crashlog
"crashlog" and "save_crashlog" command installed, use the "--help" option for detailed help
(lldb) crashlog /tmp/crash.log
...