$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-10-22 01:34:11
On Thursday 21 October 2004 19:52, Van Nguyen wrote:
> Hi, I'm a boost newbie looking for some help.
>
> Does boost-build version 2 have vc7.1 and intel-win32 as available
> compilers?
Yes, though intel-win is only available in M10
http://zigzag.lvk.cs.msu.su/~ghost/Milestone_10_preview/
> I don't find them in user_config.jam, and if I tried to
> add "using vc7.1 ;" it wouldn't find vc7.1 in the toolset.jam either.
Did you read:
http://boost.org/boost-build2/doc/html/bbv2.advanced.html#bbv2.advanced.configuration
It says that the version should be specified as a separate parameter. The
following:
using msvc : 7.1 ;
will work. For intel-win:
using intel-win ;
HTH,
Volodya