Difference between revisions of "Boost"
From CBLFS
Jump to navigationJump to searchChipster19 (talk | contribs) |
|||
Line 3: | Line 3: | ||
!Download Source: | !Download Source: | ||
| http://downloads.sourceforge.net/boost/boost_{{Boost_Version}}.tar.bz2 | | http://downloads.sourceforge.net/boost/boost_{{Boost_Version}}.tar.bz2 | ||
− | |||
− | |||
− | |||
|} | |} | ||
Line 20: | Line 17: | ||
Compile the package: | Compile the package: | ||
− | |||
./configure --prefix=/usr \ | ./configure --prefix=/usr \ | ||
--with-toolset=gcc --with-bjam=/usr/bin/bjam && | --with-toolset=gcc --with-bjam=/usr/bin/bjam && | ||
Line 35: | Line 31: | ||
Compile the package: | Compile the package: | ||
− | |||
echo "flags gcc OPTIONS : ${BUILD32} ;" >> tools/build/v2/tools/gcc.jam && | echo "flags gcc OPTIONS : ${BUILD32} ;" >> tools/build/v2/tools/gcc.jam && | ||
export USE_ARCH=32 && | export USE_ARCH=32 && | ||
Line 61: | Line 56: | ||
Compile the package: | Compile the package: | ||
− | |||
echo "flags gcc OPTIONS : ${BUILD64} ;" >> tools/build/v2/tools/gcc.jam && | echo "flags gcc OPTIONS : ${BUILD64} ;" >> tools/build/v2/tools/gcc.jam && | ||
export USE_ARCH=64 && | export USE_ARCH=64 && |
Revision as of 08:51, 1 July 2008
Download Source: | http://downloads.sourceforge.net/boost/boost_1_37_0.tar.bz2 |
---|
Contents
Introduction to Boost
Boost provides free peer-reviewed portable C++ source libraries.
Project Homepage: http://www.boost.org/
Dependencies
Required
Non-Multilib
Compile the package:
./configure --prefix=/usr \ --with-toolset=gcc --with-bjam=/usr/bin/bjam && make
Install the package:
make install
Multilib
32Bit
Compile the package:
echo "flags gcc OPTIONS : ${BUILD32} ;" >> tools/build/v2/tools/gcc.jam && export USE_ARCH=32 && ./configure --prefix=/usr --with-toolset=gcc \ --with-bjam=/usr/bin/bjam && make
Install the package:
make install && unset USE_ARCH
N32
Compile the package:
To do...
Install the package:
To Do...
64Bit
Compile the package:
echo "flags gcc OPTIONS : ${BUILD64} ;" >> tools/build/v2/tools/gcc.jam && export USE_ARCH=64 && ./configure --prefix=/usr --libdir=/usr/lib64 \ --with-toolset=gcc --with-bjam=/usr/bin/bjam && make
Install the package:
make install && unset USE_ARCH
Contents
Installed Directories: | /usr/include/boost-1_37_0 |
---|---|
Installed Programs: | None |
Installed Libraries: | Many libraries |