On Wed, Jun 22, 2005 at 04:07:35PM +0000, Joel Soete wrote: > if I link hppa64-linux-ld -> hppa64-linux-gnu-ld > (and remove the objets): > [...] > hppa64-linux-ld -r -o init/mounts.o init/do_mounts.o init/do_mounts_md.o > init/do_mounts.o: file not recognized: File format not recognized > > What's my mistake? >
It probably tries hppa64-linux-*, and then falls back to *. To fix: ( cd /usr/bin && for i in hppa64-linux-gnu-*; do j=`echo $i | sed -e 's/-gnu//'`; sudo ln -s $i $j; done ) Cheers, -- Kyle McMartin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

