On Sat, Sep 25, 2010 at 4:45 AM, John Maddock <boost.regex@virgin.net> wrote:
I have written a bash build script do this build.  It has worked fine for
previous version of boost.
i.e. 1.37.0, 1.40.0, 1.43.0
But when I tried to build 1.44.0 I get the following errors.

Does the regex lib go on to build OK?

Those compiler errors are from a configuration check that looks to see if ICU is present or not - you shouldn't actually see those messages at all (they should be suppressed and written to file rather like autoconf does).

Is there a bjam command line that reliably reproduces this?

Thanks, John.

No, the regex lib or any other lib is built OK.
 
yes, the bjam command line in my build script.

./bjam -q -d0 debug \
--toolset=gcc \
threading=multi \
address-model=32 \
--with-date_time \
--with-filesystem \
--with-graph \
--with-program_options \
--with-regex \
--with-serialization \
--with-system \
--with-thread \
--build-dir=../${BOOST_DEBUG_
BUILD} \
--prefix=../${BOOST_DEBUG_INSTALL} \
install >../${BUILD_DEBUG_LOG} 2>&1

Thanks,
Rob