File: README.rr

package info (click to toggle)
seergdb 2.5%2Bgit20250220%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 8,064 kB
  • sloc: cpp: 27,553; ansic: 1,268; makefile: 666; python: 665; asm: 244; ada: 102; fortran: 12
file content (25 lines) | stat: -rw-r--r-- 633 bytes parent folder | download | duplicates (2)
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".