Boost logo

Boost-Build :

From: Vladimir Prus (ghost_at_[hidden])
Date: 2006-02-14 05:38:51


On Tuesday 14 February 2006 13:09, Markus Schöpflin wrote:

> I think I'll try a V2 regression run next. But for this I need a customized
> toolset. I tried to put the following into a file called
> 'tru64cxx65-042.jam' living in BOOST_BUILD_PATH.
>
> ---%<---
> using tru64 : :
> <cflags>"-version V6.5-042"
> <ldflags>"-version V6.5-042 -use_non_shared_libcxx"
> ;
> --->%---
>
> But when trying the command ' bjam -a -n --v2 tru64cxx65-042'

In V2, the name of file has nothing to do with version number you request on
command line. The above code declared 'tru64' toolset without any version.

Try

 using tru64 : cxx65_042 :
    <cflags>"-version V6.5-042"
    <ldflags>"-version V6.5-042 -use_non_shared_libcxx"
    ;

and then

   bjam -a -n --v2 tru64-cxx65_042

Note that '65' and '042' must be separated by underscore, not dash.

- Volodya


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk