summaryrefslogtreecommitdiffstats
path: root/tools/debug/gdb/gdbinit
blob: a7e6b87207690f5964dff0960b6cd0f5087ca418 (plain)
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
set print pretty on

python
import sys
sys.path.insert(0, '/home/gbeutner/icinga2/tools/debug/gdb')
from icingadbg import register_icinga_printers
register_icinga_printers()
end

python
import sys
sys.path.insert(0, '/home/gbeutner/gdb_printers/python')
from libstdcxx.v6.printers import register_libstdcxx_printers
try:
    register_libstdcxx_printers(None)
except:
    pass
end

python
import sys
sys.path.insert(0, '/home/gbeutner/Boost-Pretty-Printer')
from boost.printers import register_printer_gen
register_printer_gen(None)
end