blob: 7dc4e7e20b343e0cb677d103a72298d6f8f291df [file] [log] [blame] [view]
Erik Chen5c80c7a2019-08-29 22:48:151# Usage of tools/lldb/lldbinit.py
2
3Usage of Chromium's [lldbinit.py](../tools/lldb/lldbinit.py) is recommended when
4debugging with lldb. This is necessary for source-level debugging when
Erik Chen87a677d2019-08-29 22:57:225`strip_absolute_paths_from_debug_symbols` is enabled [this is the default].
Erik Chen5c80c7a2019-08-29 22:48:156
7To use, add the following to your `~/.lldbinit`
8
9```
10# So that lldbinit.py takes precedence.
11script sys.path[:0] = ['<.../path/to/chromium/src/tools/lldb>']
12script import lldbinit
13```