$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Cedric Shock (cedricpublic_at_[hidden])
Date: 2004-01-22 14:58:13
To whom it may concern:
Today (Jan 22, 2004) I had trouble compiling the CVS Version of Boost
with GCC 3.2.2. The problem lay in the compile flags being passed to
g++. The flag -Wno-long-double is not understood by this version of gcc,
and the compilation fails. To compile I did the following:
Edited boost/tools/build/v1/gcc-tools.jam
Before editing, line 61 read:
flags gcc CFLAGS : -Wno-long-double ;
I replaced this line with the following two lines:
# -Wno-long-double is not supported by GCC 3.2.2
# flags gcc CFLAGS : -Wno-long-double ;
I hope this helps if anyone else has this problem.
--Cedric