Boost logo

Boost :

From: John Maddock (john_at_[hidden])
Date: 2005-11-24 05:23:32


Renato Tegon Forti wrote:
> Hi John, Thank you (very very very... much) for your help.
>
> I have one doubt; I need define one Preprocessor directive to compile
> with RogueWave STD, and specify lib directory to link with RW libs,
> then I did try:
>
> bjam "-sBUILD=debug <cxxflags>-IC:\RogueWave\SourcePro\Ed8\include
> <cxxflags>-IC:\RogueWave\SourcePro\Ed8\include\ansi
> <cxxflags>-IC:\RogueWave\SourcePro\Ed8\lib <cxxflags>-D_RWCONFIG=rmd
> <runtime-link>dynamic <threading>multi" "-sTOOLS=vc-7_1"
>
> but this don't work. Where I should put lib
> dir(C:\RogueWave\SourcePro\Ed8\)
>
> Can you help-me?
>
> Sample of error returned: I think that this error is because it don't
> find
> RW libs.

It needs to be put under <linkflags> and for VC71 the command line option is
presumably -LIBPATH:path, so:

bjam "-sBUILD=debug <cxxflags>-IC:\RogueWave\SourcePro\Ed8\include
<cxxflags>-IC:\RogueWave\SourcePro\Ed8\include\ansi
<linkflags>-LIBPATH:C:\RogueWave\SourcePro\Ed8\lib <cxxflags>-D_RWCONFIG=rmd
<runtime-link>dynamic <threading>multi" "-sTOOLS=vc-7_1"

Does this do it?

John.


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk