$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2006-02-27 09:44:53
On Monday 27 February 2006 17:05, Markus Schöpflin wrote:
> >> What is the correct syntax for this in bbv2?
> >
> > <toolset>hp_cxx:<build>no
.....
> I now have
>
> [ bpl-test pointer_vector
>
> : # files
> : # requirements
>
> # Turn off this test on HP CXX, as it hangs when executing.
> <toolset><hp_cxx>:<build>no ]
>
> This seems to be syntactically correct but still compiles the test when
Remove the angle brackets around the toolset name. You need:
<toolset>hp_cxx:<build>no
not
<toolset><hp_cxx>:<build>no
- Volodya