Re: time to ask for some help

1998-07-12 Thread G John Lapeyre
Sorry about the delay. I can't get the soname option to work as given below. I can get it to work with: -Wl,-soname -Wl,libmeschach.so.$(vers) On 18 Jun 1998, James LewisMoss wrote: > > On Thu, 18 Jun 1998 16:45:58 -0400 (EDT), "Jaldhar H. Vyas" <[EMAIL > > PROTECTED]> sai

Re: time to ask for some help

1998-06-26 Thread Jaldhar H. Vyas
On 18 Jun 1998, James LewisMoss wrote: > I'm not sure about this one (don't know what -Bsymbolic does), but the > -soname part is necessary. > for anyone who cares, I found out that it passes an option to the linker and according to the ld(1) man page, -Bsymbolic When c

Re: time to ask for some help

1998-06-19 Thread James LewisMoss
> On Thu, 18 Jun 1998 16:45:58 -0400 (EDT), "Jaldhar H. Vyas" <[EMAIL > PROTECTED]> said: Jaldhar> I checked and I am linking with -lc. But the -Wl thing. Is Jaldhar> it in addition to the -Wl,-Bsymbolic I've already got or Jaldhar> should it replace it? i.e. Jaldhar> -shared, -Wl

Re: time to ask for some help

1998-06-18 Thread Jaldhar H. Vyas
I checked and I am linking with -lc. But the -Wl thing. Is it in addition to the -Wl,-Bsymbolic I've already got or should it replace it? i.e. -shared, -Wl,-Bsymbolic -Wl,soname,libtwin.so.3.2 -D_REENTRANT or -shared -Wl,soname,libtwin.so.3.2 -D_REENTRANT Thanks for your help. -- Jaldhar

Re: time to ask for some help

1998-06-18 Thread Shaleh
You have everything right so far. You need to make sure that it links with "-lc" (libc) and that it sets the soname. This is done w/ -Wl,soname,libfoo.so.. This makes it so that multiple libs can co-exist. Like libc5 and libc6 do. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject

time to ask for some help

1998-06-18 Thread Jaldhar H. Vyas
I'm packaging the Windows emulator TWIN. It's my first library package and the experience has been very educational (though in retrospect I think I should have picked something a little smaller.) I have a a nice -dev package. I have nice static libraries. I'm still getting problems with shared