$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Ali Azarbayejani (ali_at_[hidden])
Date: 2003-03-14 18:47:56
In gcc.jam, this is the compile action
actions compile
{
$(NAME:E=g++) -Wall -ftemplate-depth-100 $(OPTIONS) -D$(DEFINES)
-I$(INCLUDES) -c -o $(<) $(>)
}
A project I am building requires having no "-Wall" (too many spurious
warnings) and -ftemplate-depth-30.
Is there a principled way of dealing with this (other than modifying
gcc.jam)?
--Ali