RedHat bug #140081 has tarred up libraries attached that are effected by the prelink bug. https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=140081 On Fri, 2004-11-19 at 16:36, Jakub Jelinek wrote: > On Fri, Nov 19, 2004 at 04:33:00PM -0500, Colin Walters wrote: > > > Anyway, if you have a reproducer and tar up the binary, all libraries > > > and whatever else is necessary for reproduction, that goes away > > > if you unprelink the binary or its libraries, I'll certainly look at > > > it. > > > > Will do. > > Note that the important thing is to tar them up before unprelinking, > if the bug goes away after unprelinking, when you prelink -u it is > usually to late. > > tar chjf foo.tar.bz2 `LD_TRACE_PRELINKING=1 LD_WARN= /path/to/program | awk '{print $3}'` > > should do the job. > > Jakub