-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgdbinit
More file actions
25 lines (21 loc) · 783 Bytes
/
gdbinit
File metadata and controls
25 lines (21 loc) · 783 Bytes
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
add-auto-load-safe-path /home/peter/Codes/IDAM/latest/test/source/plugins/newhdf5/.gdbinit
add-auto-load-safe-path /home/peter/Codes/IDAM/latest/test/source/plugins/newcdf4/.gdbinit
add-auto-load-safe-path /home/peter/Codes/IDAM/latest/source/wrappers/fortran/.gdbinit
add-auto-load-safe-path /home/peter/Codes/IDAM/latest/source/wrappers/c++/.gdbinit
set print pretty
set print null-stop
catch throw
set disassembly-flavor intel
# enable history, probably
set history filename ~/.gdb_history
set history save
set history size unlimited
set build-id-verbose 0
set print inferior-events off
set max-completions 20
python
import sys
sys.path.insert(0, '/usr/share/gcc-10/python')
from libstdcxx.v6.printers import register_libstdcxx_printers
register_libstdcxx_printers (None)
end