$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2006-02-02 11:43:29
> This should be checked, because I actually don't know if what order
> compilers such as MSVC process includes. V2 invokes vcvars32.bat
> before running the compiler.
Running setup scripts like that is fine, what was causing me problems were:
Compiler include paths injected into the command line with -I *before* the
Boost include path (this was VC++ and was in *addition* to running the setup
batch file).
Library include paths (STLport) injected onto the command line with -I
*before* the Boost include path.
Hopefully these can be avoided in future, but we'll see I guess :-)
John.