Hi, On Mon, Feb 05, 2024 at 07:24:33PM -0500, Aaron Merey wrote: > > diff --git a/NEWS b/NEWS > > index 0420d3b8..3391d6a1 100644 > > --- a/NEWS > > +++ b/NEWS > > @@ -1,3 +1,8 @@ > > +Version 0.191 (after 0.189) > > + > > +srcfiles: Can now fetch the source files of a DWARF/ELF file and > > + place them into a zip. > > + > > Version 0.190 "Woke!" > > > > CONTRIBUTING: Switch from real name policy to known identity policy. > > @@ -9,6 +14,9 @@ libelf: Add RELR support. > > > > libdw: Recognize .debug_[ct]u_index sections > > > > +srcfiles: added srcfiles tool that lists all the source files of a given > > + DWARF/ELF file. > > + > > readelf: Support readelf -Ds, --use-dynamic --symbol. > > Support .gdb_index version 9 > > This looks like a merge issue after the 0.190 release. I updated the version at the top and removed the duplicate entry under 0.190. > > diff --git a/debuginfod/debuginfod.cxx b/debuginfod/debuginfod.cxx > > index 524be948..6b21f46f 100644 > > --- a/debuginfod/debuginfod.cxx > > +++ b/debuginfod/debuginfod.cxx > > @@ -2996,8 +2996,6 @@ dwarf_extract_source_paths (Elf *elf, set& debug_sourcefiles) > > > > if (comp_dir[0] == '\0' && cuname[0] != '/') > > { > > - // This is a common symptom for dwz-compressed debug files, > > - // where the altdebug file cannot be resolved. > > if (verbose > 3) > > obatched(clog) << "skipping cu=" << cuname << " due to empty comp_dir" << endl; > > continue; Was it intended to remove this comment? Cheers, Mark