-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy path.lldbinit
36 lines (26 loc) · 1.12 KB
/
.lldbinit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Silently import the lldb.macosx.crashlog scripts
command script import -s lldb.macosx.crashlog
# Load scripts from dSYM bundles
settings set target.load-script-from-symbol-file true
# Autosuggestions
settings set show-autosuggestion true
settings set show-autosuggestion-ansi-prefix "${ansi.fg.bright.yellow}"
# Progress
settings set show-progress-ansi-prefix "${ansi.fg.yellow}"
# Background symbol lookup
settings set -e symbols.experimental.enable-background-lookup true
settings set -e symbols.auto-download background
# Always look in all compile units
# settings set target.inline-breakpoint-strategy always
# Always break after the dynamic linker is finished
# settings set target.process.stop-on-sharedlibrary-events on
# Always print the dynamic type of the result of an expression
# settings set target.prefer-dynamic-value run-target
# Inherit TCC from the parent
# settings set target.inherit-tcc true
# Debug utility functions
# settings set target.debug-utility-expression true
# Logging
# log enable lldb types -f /tmp/types.log
# log enable lldb dyld -f /tmp/dyld.log
# log enable gdb-remote packets -f /tmp/gdb.log