[18:48] Hey, so, I found a bug and I've confirmed it, but the process to report a bug has too many steps.  I don't have time to do it right now [18:48] If I describe it here can someone please file it for me?  Making a launchpad, getting verified, and filling out all the forms will take literally an hour and I have stuff to do. [18:49] The bug is a simple one for the package maintainer [18:49] basically, I'm debugging an OpenMP program under clang [18:49] so I installed the debug symbols package [18:49] associated with libomp5.so [18:51] So, steps to reproduce: [18:51] enable debug symbols repository. [18:51] Then, do [18:51] sudo apt update [18:51] sudo apt install libomp-12-dev libomp-12-dev-dbgsym [18:51] readelf -n /lib/x86_64-linux-libomp5.so [18:53] It prints "    Build ID: b522429c30828b8de922bc933054ff333681bade" [18:53] so then if you do [18:54] apt content libomp-12-dev-dbgsym [18:55] It shows /usr/lib/debug/.build-id/96/4fcf0bc474e8420b7ea08d320a89f4926a4f01.debug [18:56] so the hash is wrong because somehow the debug information for the wrong build ID got uploaded. [18:56] this breaks the debug information for libomp on clang [18:57] which is a bug.  The whole point of having the debug symbols is that the build ids should match. [18:58] so debugging information in the binaries can be found.