Samuel Thibault, le Tue 25 Oct 2011 01:19:01 +0200, a écrit :
> Thomas Schwinge, le Tue 25 Oct 2011 01:17:31 +0200, a écrit :
> > I did not know there was a straightforward/standardized way for doing
> > this.  How does this work?  Is there a tool to examine each packages' ELF
> > objects for certain undefined symbols?
> 
> find + ar x + tar + nm :)

I'm now running

for i in $(find /srv/ftp-master.debian.org/ftp/pool -name \*_hurd-i386.deb) ; 
do ar p $i data.tar.gz 2> /dev/null | tar xz 2> /dev/null ;  ar p $i 
data.tar.bz2 2> /dev/null | tar xj 2> /dev/null ; find . -type f -print0 | 
xargs -0 nm 2> /dev/null | grep xxx_ && echo $i ; find . -type f -print0 | 
xargs -0 nm -D 2> /dev/null  | grep xxx_ && echo $i ; \rm -fr *  ; done

on the Debian archive.

Samuel


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to