$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Artem Alimarine (artem_at_[hidden])
Date: 2006-08-30 03:39:05
Reece Dunn wrote:
> The thing I am not sure about is replacing the default (compiler) preprocessor
> and/or assembler with an external tool. For example, how would I replace the
> msvc preprocessor (cl -E ...) with Boost.Wave?
I do not see a problem there. Just preprocess the output with the given
preprocessor and then compile the resulting file as a C++ file, like:
cl -Tp foo.pp
Artem