$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2003-01-14 13:48:19
I've tried to use g++3.2 with some of my code which uses Boost.Build V2,
and run in a problem.
To reproduce, just add
import gcc ;
using gcc : 3.2 g++-3.2 ;
to your new/user-config.jam
and try to build examples-v2/hello. The error message is
/home/ghost/Work/boost/tools/build/examples-v2/../new/property.jam:223: in
validate from module property
error: Invalid property '<toolset-version>3.2': value '3.2' is not valid for
feature'toolset-version'.
And it's caused by the line 34 of gcc.jam: where I try to adjust the name
for particlar compiler version.
I wonder if the feature module should be changed to recognize
<toolset-version> as valid feature...
- Volodya