From: Markus Schöpflin (markus.schoepflin_at_[hidden])
Date: 2002-08-05 11:00:15


Vladimir Prus wrote:
>
> Markus Schöpflin wrote:
> > Hello,
> >
> > how do I specify a command line argument for the linker?
> > Something like LDFLAGS in makefiles?
>
> exe a : a.cpp <linkflags>something ;
>
> should do that.
>
> HTH,
> Volodya
>

Thanks, this works. Is there any way to get this at the
end of the linker command line?

Background: I'm trying to link an OCI (Oracle Call Interface)
application and you need huge amount of link libraries for this.
I have written a make file which echoes the needed -L and -l
parameters and I would like to use the ouput of this makefile
as an input to my jam based build process.

Markus