Subject: Re: Ooops...
To: Michael Graff <explorer@vorpal.com>
From: Alan Barrett <barrett@daisy.ee.und.ac.za>
List: current-users
Date: 03/31/1994 21:07:50
> ranlib libgcc.a
> *** Signal 11
I am trying to recover from approximately the same problem. It seems that
we neglected to recompile ranlib at the right time. So far, I seem to be
having reasonable success with this script in place of /usr/bin/ranlib:
#!/bin/sh
case "$1" in
-*) exit 0 ;;
esac
ar r $1 __.SYMDEF
MEMBERS=`ar t $1`
ar q $1 $MEMBERS
--apb (Alan Barrett)
------------------------------------------------------------------------------