$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Beman Dawes (bdawes_at_[hidden])
Date: 2002-07-18 15:10:44
In typical toolsets like metrowerks, the C++ compile actions are named like
this:
#### C++ ####
rule C++-action
{
...
}
actions metrowerks-C++-action
{
...
}
But in the msvc toolset, the naming is like this:
#### C++ ####
rule C++-action
{
...
}
actions vc-C++
{
...
}
It there a reason for that?
OK if I change the actions name to:
actions msvc-C++-action
So that log analysis tools don't have to special case that compiler?
--Beman