|
Boost Testing : |
Subject: Re: [Boost-testing] Test Running Crash
From: Vladimir Prus (vladimir_at_[hidden])
Date: 2009-09-30 01:12:07
Tom Kent wrote:
> So, now I seem to be having the same problem, except with msvc-8.0.
>
> I run my command:
> python run.py --runner=BoeingVM-01 --toolset=msvc-8.0 --tag=trunk
> --proxy=http://www-stl-proxy.boeing.com:31060 > log.txt 2>&1
>
> and get the output:
> http://boost.teeks99.com/log_vs8.txt
>
> and the reuslts/bjam.log:
> http://boost.teeks99.com/bjam.log
>
> Any thoughts on this one?
Tom,
this is a completely different problem; it even have a different error message ;-)
The relevant output is:
warning: No toolsets are configured.
warning: Configuring default toolset "msvc".
warning: If the default is wrong, your build may not work correctly.
warning: Use the "toolset=xxxxx" option to override our guess.
warning: For more configuration options, please consult
...
error: "8.0" is not a known subfeature value of <toolset>msvc
You had 9.0 configured by default, not 8.0. You can fix this by putting:
using msvc : all ;
in your user-config.jam. See
http://www.boost.org/boost-build2/doc/html/bbv2/advanced/configuration.html
for documentation about where user-config.jam should be placed.
- Volodya