This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: SunOS shared libs ?



  In message <199806101546.IAA05334@netcom13.netcom.com>you write:
  > write_c_file - output name is ../../../lib/libtype1.so, prefix is libtype1_
  > so
  > static int count;
  > typedef void entry_pt();
  > void _GLOBAL__FI_libtype1_so() {
  >         ++count;
  > }
Here's the reason why you still need the -fPIC option when building
a shared library out of just pure C code.  The reference to "count"
must be PIC.  I don't know why we need to increment that counter.
Someone familiar with C++ and collect2 would have to comment.

jeff


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]