Re: Static Link with Shared Object

2007-01-01 Thread Jason C. Wells
That's just what I needed to fill in the gaps in my understanding. Thanks, Jason ___ freebsd-chat@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-chat To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Static Link with Shared Object

2006-12-28 Thread Oliver Fromme
Jason C. Wells wrote: Does linking to a shared object cause the new object file to be shared also? Yes. As soon as a single shared object is involved, the runtime linker comes into play. To produce a truely static binary -- if that's what you want --, you must use all static libraries (*.a,

Static Link with Shared Object

2006-12-18 Thread Jason C. Wells
I was trying to create a static version of MIT's ksu in place of Heimdal ksu so I can avoid having dualing kerberos libraries on my system. (Heimdal ksu is borken IMHO.) Does linking to a shared object cause the new object file to be shared also? Stated another way: Why doesn't this produce