Re: libgcc_s : What links to it and why?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Jeff Blaine <jblaine@xxxxxxxxx> writes:

> I didn't get an answer to my previous long post about the
> problem I am having, so I figured I would try asking
> more direct questions:
> 
> What, in GCC, makes the determination to link in -lgcc?

-lgcc is always linked in.

I assume you are asking: what decides whether to link it statically or
dynamically?  That is controlled by the -static-libgcc and
-shared-libgcc options, q.v.

The g++ driver program always adds -shared-libgcc.  So if you link
with g++, you will normally get a shared libgcc (unless you use the
-static-libgcc option, of course).

> Why am I unable to get around shared linking of -lgcc?
> I have tried both of the following and neither works
> if I have a libgcc_s.so
> 
>      a) In 'specs', specify "-Bstatic -lgcc -Bdynamic" for
>         the 'libgcc:' directive.
> 
>      b) In 'specs', specify "/my/static/libgcc.a" for the
>         'libgcc:' directive.

That is odd.  It sounds like your specs file is not being read.  I'm
not sure why not.

Ian

[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux