bernhardu

Results 64 comments of bernhardu

I have not much contact to other distributions other than Debian. But could reproduce it now with a OracleLinux 9.2. ``` OracleLinux-R9-U2-x86_64-boot.iso sudo dnf install cmake make gcc gcc-c++ gdb...

Thanks, let me try how it works when I put it into the default options.

For the tests `nested_detach_kill`, `nested_detach_kill_stuck` and `nested_detach_wait` following diff would be sufficient. ```diff diff --git a/src/main.cc b/src/main.cc index 128fcbe3..f7ea5c34 100644 --- a/src/main.cc +++ b/src/main.cc @@ -231,6 +231,13 @@ size_t saved_argv0_space()...

I pushed a new version with no longer setting the environment, instead using `__asan_default_options`.

Changes: - Rebased to current tip. - Do not try to add libasan to LD_PRELOAD below ASan-rr.

Just a rebase to current tip.

Maybe something useful in /proc/pid/cmdline? Attached patch should print the contents in the error message. [cmdline.patch.txt](https://github.com/rr-debugger/rr/files/12720565/cmdline.patch.txt)

If enabling this support is not possible, as a workaround, maybe running gdb inside the recording and setting $pc below the rdrand instruction might work? Or replacing it by nop?...

Nice to hear it is working. Yes I felt it being kind of slow too - maybe just using gdbserver inside the recording and having gdb itself outside could help...

> but... as the replay now replays gdbserver - how do I get to debug the executable? Can I instruct rr to only replay the program that was controlled by...