Re: Using ld instead of ar

2002-01-19 Thread Tom Tromey
> "Lars" == Lars Hecking <[EMAIL PROTECTED]> writes: Lars> $ man ld Lars> [...] Lars> -r Produce relocatable object file, suitable for another pass Lars> through ld. Lars> [...] I think you can do that like this: noinst_PROGRAMS = whatever.o whatever_o_SOURCES

Re: Using ld instead of ar

2002-01-18 Thread Lars Hecking
Tom Tromey writes: > > "Itay" == Itay Meiri <[EMAIL PROTECTED]> writes: > > Itay> My project is built from several source subdirs. By default > Itay> automake is using ar to build a single 'somelib.a' in every > Itay> subdir before the final link. How can I make it use ld instead > Itay> of a

Re: Using ld instead of ar

2002-01-18 Thread Tom Tromey
> "Itay" == Itay Meiri <[EMAIL PROTECTED]> writes: Itay> My project is built from several source subdirs. By default Itay> automake is using ar to build a single 'somelib.a' in every Itay> subdir before the final link. How can I make it use ld instead Itay> of ar? I tried using libtool but i

Using ld instead of ar

2002-01-16 Thread Itay Meiri
Hi, My project is built from several source subdirs. By default automake is using ar to build a single 'somelib.a' in every subdir before the final link. How can I make it use ld instead of ar? I tried using libtool but it didn't help. TIA ---