Re: Installing convenience libraries

2006-09-29 Thread Akim Demaille
>>> "Ralf" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: Thanks Ralf, > (The only system it won't work on then is w32 with MSVC with the > LIB archiver instead of ar.) Bummer. But I'm not surprised :) > Hmm. By default the > libtool --mode=link $CC -o liba.a a.lo > will choose the no

Re: Installing convenience libraries

2006-09-29 Thread Ralf Wildenhues
Hello Akim, * Akim Demaille wrote on Fri, Sep 29, 2006 at 12:05:39PM CEST: > >>> "Ralf" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: > > > > Convenience archives are not intended to be installed. > > This is a quote from the documentation: > >You can even install a convenience library us

Re: Installing convenience libraries

2006-09-29 Thread Akim Demaille
>>> "Ralf" == Ralf Wildenhues <[EMAIL PROTECTED]> writes: > Hello Akim, > * Akim Demaille wrote on Fri, Sep 29, 2006 at 10:41:36AM CEST: >> >> I'm trying to build a convenience library, install it, build another >> convenience library on top of it (and again install it), and finally >> link

Re: Installing convenience libraries

2006-09-29 Thread Ralf Wildenhues
Hello Akim, * Akim Demaille wrote on Fri, Sep 29, 2006 at 10:41:36AM CEST: > > I'm trying to build a convenience library, install it, build another > convenience library on top of it (and again install it), and finally > link an executable using the latter library. Convenience archives are not i

Installing convenience libraries

2006-09-29 Thread Akim Demaille
[Please keep me in CC.] Hi, I'm trying to build a convenience library, install it, build another convenience library on top of it (and again install it), and finally link an executable using the latter library. I thought I could do that using Libtool static libraries with extension .la, but it

Re: Installing convenience libraries

2001-05-02 Thread Alexandre Oliva
On Apr 26, 2001, Nick Hudson <[EMAIL PROTECTED]> wrote: > What I'd like is a archive of -fPIC compiled code. Compile the code with -prefer-pic and create a -static library. -- Alexandre Oliva Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/ Red Hat GCC Developer aoliva@{

Re: Installing convenience libraries

2001-05-02 Thread Alexandre Oliva
On Apr 30, 2001, Nick Hudson <[EMAIL PROTECTED]> wrote: > Are there really platforms that do not allow the equivalent of "ar" > PIC objects? I believe the oddities of MS-Windows DLLs could break this in certain cases. -- Alexandre Oliva Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/ Re

Re: Installing convenience libraries

2001-04-30 Thread Nick Hudson
Thomas Tanner wrote: > > On 26-Apr-2001 Nick Hudson wrote: > > Is there any reason why I shouldn't be able to install a convience > > library. For example > > > What I'd like is a archive of -fPIC compiled code. > > build it as static library and use the --with-pic configure option > or libto

RE: Installing convenience libraries

2001-04-27 Thread Thomas Tanner
On 26-Apr-2001 Nick Hudson wrote: > Is there any reason why I shouldn't be able to install a convience > library. For example > What I'd like is a archive of -fPIC compiled code. build it as static library and use the --with-pic configure option or libtool's -prefer-pic flag keep in mind tha

Installing convenience libraries

2001-04-26 Thread Nick Hudson
Is there any reason why I shouldn't be able to install a convience library. For example $ libtool --mode=compile cc -c dummy.c -o dummy.o cc -c dummy.c -fPIC -DPIC -o .libs/dummy.o cc -c dummy.c -o dummy.o >/dev/null 2>&1 $ $ libtool --mode=link cc -o libconv.la dummy.lo ar cru .libs/libconv.a .