go-delve / delve

Delve is a debugger for the Go programming language.
MIT License
22.84k stars 2.14k forks source link

`rr` parsing broken by recent rr changes #3704

Closed howardjohn closed 5 months ago

howardjohn commented 5 months ago

https://github.com/rr-debugger/rr/commit/07d2aeb7e7a7e9b632681107f4f75602a5362060 changed the output of the rr replay command.

Now it looks like

Launch debugger with
  'gdb' '-l' '10000' '-ex' 'set sysroot /' '-ex' 'target extended-remote 127.0.0.1:12007' ...

I think before it looked like

Launch debugger with
  gdb '-l' '10000' '-ex' 'set sysroot /' '-ex' 'target extended-remote 127.0.0.1:12007' ...

(notice gdb is unquoted)