Re: how do I avoid dynamic libraries?

2012-02-14 Thread Nick Bowler
Hi Sam, This sounds like a libtool question, so I'll Cc the libtool list and try to answer it based on that assumption. On 2012-02-14 10:18 -0500, Sam Steingold wrote: There is a problem with the libffcall (http://www.gnu.org/software/libffcall/ http://savannah.gnu.org/projects/libffcall)

Re: how do I avoid dynamic libraries?

2012-02-14 Thread Daniel Herring
The only sure way I know to statically link a single library is to dispense with the common -lname and directly specify /path/to/libffcall.a (or the platform-specific equivalent) on the linker command line. - Daniel ___