$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-03-31 04:16:59
Hi Vincent,
> I shouldn't be so terse. I meant TOOLS as in "bjam -sTOOLS=gcc". Is
> there a way to specify a default for that bjam command-line option?
Not exactly that, since V2 does not use -sTOOLS, but something close is
possible, in a number of ways:
1. The toolset which is first defined in 'user-config.jam'/'site-config.jam'
becomes default.
2. You can change default toolset for your project with
project
: default-build <toolset>msvc
;
3. You can also change default toolset globally by
import feature ;
feature.set-default toolset : msvc ;
but this is probably not needed since you have (1)
HTH,
Volodya