On Fri, 26 Apr 2024 08:54:27 -0400 Daniel Kahn Gillmor <[email protected]> wrote: > Package: gpg-sq-dbgsym > Version: 0.8.0-4 > Severity: normal > X-Debbugs-Cc: Daniel Kahn Gillmor <[email protected]> > > I am trying to debug a performance issue with gpg-sq upstream > (https://gitlab.com/sequoia-pgp/sequoia-chameleon-gnupg/-/issues/72) and > i attached gdb to a running gpg-sq process. > > As soon as it was attached, gdb emits this warning: > > warning: Missing auto-load script at offset 0 in section .debug_gdb_scripts > of file /usr/bin/gpg-sq. > > I'm not sure exactly what this means, or how it should be fixed, but > here it is in context:
late to the party, but this warning means that the debug info contains a reference to a pretty printer script. if you invoke gdb via `rust-gdb` it is auto-loaded (provided rust-gdb's version matches the rustc version that was used to compile the binary - see #1121646 for more details).

