-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgdbinit
More file actions
28 lines (23 loc) · 864 Bytes
/
Copy pathgdbinit
File metadata and controls
28 lines (23 loc) · 864 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
26
27
28
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
skip -gfi /usr/include/c++/15/bits/*.h
skip -gfi /usr/include/c++/15/bits/*.tcc
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