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
|
Notes for using RR with Seer.
Record a RR session.
https://github.com/rr-debugger/rr/wiki/Usage
$ rr record -n hellosegv one two three
Replay the RR session in gdb.
$ rr replay
Using RR in a gui debugger. Basically, attach to the rr server port.
https://github.com/rr-debugger/rr/wiki/Using-rr-in-an-IDE
$ rr replay -s 50505 -k
$ rr replay -s 50505 -k
Launch gdb with
gdb '-l' '10000' '-ex' 'set sysroot /' '-ex' 'target extended-remote 127.0.0.1:50505' /nas/erniep/Development/seer/tests/hellosegv/hellosegv
Then use "Connect" method in Debug dialog and connect to "127.0.0.1:50505".
|