mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
17 lines
854 B
Plaintext
17 lines
854 B
Plaintext
# .lldbinit file for debugging Mozilla
|
|
|
|
# Mozilla's use of UNIFIED_SOURCES to include multiple source files into a
|
|
# single compiled file breaks lldb breakpoint setting. This works around that.
|
|
# See http://lldb.llvm.org/troubleshooting.html for more info.
|
|
settings set target.inline-breakpoint-strategy always
|
|
|
|
# Show the dynamic type of an object when using "expr". This, for example,
|
|
# will show a variable declared as "nsIFrame *" that points to an nsBlockFrame
|
|
# object as being of type "nsBlockFrame *" rather than "nsIFrame *".
|
|
settings set target.prefer-dynamic-value run-target
|
|
|
|
# Import the module that defines complex Gecko debugging commands. Rather
|
|
# than do any kind of searching, this assumes that you are running lldb from
|
|
# the top level source directory.
|
|
script sys.path.append('python/lldbutils'); import lldbutils; lldbutils.init()
|