2008/06/10

WMU-6500FS - Boost 1.35



Build results: [binary] [files list]
Note: besides the DSO files this archive contains even all the boost header files and documentation (not actually necessary on the box).

Build sequence:
dev# wget http://downloads.sourceforge.net/boost/boost_1_35_0.tar.bz2?modtime=1206795398&big_mirror=0
dev# tar xjvf boost_1_35_0.tar.bz2
dev# cd boost_1_35_0
dev# ./configure --prefix=/mnt/C/sys
dev# make
dev# make install
The boost library names are more specific (contain boost version and compiler version) than some software demand. I do not know whether there should be libboost_*-mt.so symlinks, maybe I have not configured boost library properly, as a quick fix I have created the links manually:
dev# cd /mnt/C/sys/lib
dev# for i in `ls ./libboost_*-gcc33-mt-1_35.so.1.35.0`; do ln -s `basename $i` ${i/%-gcc33-mt-1_35.so.1.35.0/-mt.so}; done

No comments: