where is libgcc_so.1?
On Wednesday, September 22, 2010 03:37:04 Joakim Tjernlund wrote:
> Mike Frysinger wrote on 2010/09/21 22:05:11:
> > On Monday, September 20, 2010 16:46:43 Joakim Tjernlund wrote:
> > > Yes, I meant libgcc_s.so.1. I cannot find it under
> > > /usr/lib/gcc/powerpc-e300c2_softfloat-linux-gnu nor
> > > /usr/powerpc-e300c2_softfloat-linux-gnu/
> > >
> > > There is a
> > > /usr/lib/gcc/powerpc-e300c2_softfloat-linux-gnu/4.4.4/libgcc.a though.
> >
> > i'm guessing it's because you selected --stage3. you really want
> > --stage4.
>
> Yes, I will try with -s4 later. I do think -s3 should include libgcc_s.so.1
> too if one selects NPTL as it requires libgcc_s.so.1
look at the stage list. you have to build a bare compiler (stage1) before you
can build the C library (stage3), and you need the C library before you can
build shared libraries like libgcc_s.so.1 (stage4).
-mike
|