Backout a74bd5095902, Bug 959405 - Please update the Buri Moz-central, 1.3, 1.2 with...
[gecko.git] / .lldbinit
blob8564681b0f2af41cac8b135e12c7c271236f8508
1 # .lldbinit file for debugging Mozilla
3 # Mozilla's use of UNIFIED_SOURCES to include multiple source files into a
4 # single compiled file breaks lldb breakpoint setting. This works around that.
5 # See http://lldb.llvm.org/troubleshooting.html for more info.
6 settings set target.inline-breakpoint-strategy always
8 # Show the dynamic type of an object when using "expr".  This, for example,
9 # will show a variable declared as "nsIFrame *" that points to an nsBlockFrame
10 # object as being of type "nsBlockFrame *" rather than "nsIFrame *".
11 settings set target.prefer-dynamic-value run-target
13 # Import the module that defines complex Gecko debugging commands.  Rather
14 # than do any kind of searching, this assumes that you are running lldb from
15 # the top level source directory.
16 script sys.path.append('python/lldbutils'); import lldbutils; lldbutils.init()