summaryrefslogtreecommitdiff
path: root/modules/profiles/dev/gdbinit
blob: e266236e977a16a71b3445a776e715deb98271d1 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
set confirm off
set verbose off
set editing off

set history expansion on

set height 0
set width  0

handle SIGALRM nostop print nopass
handle SIGBUS    stop print nopass
handle SIGPIPE nostop print nopass
handle SIGSEGV   stop print nopass

set print address on
set print elements 0
set print object on
set print pretty on
set print repeats 0
set print static-members on
set print vtbl on

set output-radix 10

set demangle-style gnu-v3

set disassembly-flavor intel

alias iv=info variables

alias da=disassemble

define fs
    finish
    step
end

define btc
    backtrace
    continue
end