Time to update boost to version 1.35 under linux, now that I’ve updated it under Windoze.

First, clean out boost and get a fresh copy.

cd ~m/development/boost_cvs
rm -rf boost
cvs -d:pserver:anonymous@boost.cvs.sourceforge.net/cvsroot/boost login
cvs -z3 -d:pserver:anonymous@boost.cvs.sourceforge.net/cvsroot/boost co -P boost

Looks like bjam version 3.1.13-1 is still the most current. Now kick off the install.

screen
../bjam/boost-jam-3.1.13-1-linuxx86/bjam “-sTOOLS=gcc”
(go get lunch)
…updated 1341 targets…
su –
cd ~m/development/boost_cvs/boost
../bjam/boost-jam-3.1.13-1-linuxx86/bjam “-sTOOLS=gcc” install

That did nothing to clean up the old 1.33 version of boost. Let’s try to do some of that, boost is a big beast.

cd /usr/local/lib
rm -f libboost_*1_33*
cd /usr/local/include
rm -rf boost-1_33

Then update STDJ to use the new boost.

configure.in: CPPFLAGS=”${CPPFLAGS} -I/usr/local/include/boost-#version#”

Keep on keepin’ on…

Leave a Reply