Re: parallel loading of debug info in gdb
Luis Machado via Gdb <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
On 1/7/25 02:14, Yubin via Gdb wrote: > Hi, > > Does gdb supports parallel loading of debug symbols? I am debugging some > binary which is 3~4GB itself, and loading and parsing its debug info takes > minutes. Since a few years, gdb has had worker threads, potentially as many as cores (physical or virtual) on the system. So it does support trying to read things in parallel. Unfortunately the nature of the data limits things somewhat, as you have dependencies and have to look those up before proceeding further. I've cc-ed Tromey, which worked in this area before. > > Thanks, > Yubin