$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Markus Schöpflin (markus.schoepflin_at_[hidden])
Date: 2008-07-30 08:21:03
Jurko GospodnetiÄ wrote:
[snip lengthy and helpful explanation]
OK, I added the following things to the hp_cxx toolset:
flags hp_cxx.compile.c++ TEMPLATE_DEPTH <c++-template-depth> ;
and in the compile.c++ action:
... "-pending_instantiations "$(TEMPLATE_DEPTH) ...
This results in a compiler command line '... "-pending_instantiations "128
...' when I don't specify the feature <c++-template-depth>, and '...
"-pending_instantiations "100' when specifying <c++-template-depth>100.
How do I get rid of those double quotes? Using
... -pending_instantiations\ $(TEMPLATE_DEPTH)
didn't help as well.
Markus