$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Phillip Seaver (phil_at_[hidden])
Date: 2007-02-19 21:05:55
K. Noel Belcourt wrote:
> Hi,
>
> I want to force <runtime-link>static whenever I build <toolset>gcc
> and I'm <link>static. I've tried adding this to my Jamroot project
> but it doesn't seem to work. Does anyone know how to express this
> kind of dependency?
>
> [ in Jamroot ]
>
> project
> : requirements
> <toolset>gcc:<link>static:<runtime-link>static
> ;
You want "<toolset>gcc,<link>static:<runtime-link>static" -- note the
',' (comma)
Phillip