$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2008-01-10 17:02:03
Khassapov, Alex wrote:
> Hi all,
>
>
>
> I'm new to bjam, so need some help!
>
>
>
> I have files in the project with .y and .C (capital C) extensions and
> when I try to do the build, I get the errors like this:
>
>
>
> error: target { date_text2triple.y. } has no type
You need to enable bison support, by adding
using bison ;
to your user-config.jam.
> What I don't understand - looking at Jambase, the rule Object should
> handle both file types automatically.
>
> I also added printouts in all rules in Jambase and found that only a few
> rules are used (i.e. boost-build and
>
> find-to-root), but the rest isn't.
Right, most of them were used in Classic Jam, but when you're using
Boost.Build, they are not used.
- Volodya