Boost: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://downloads.sourceforge.net/boost/boost_{{Boost_Version}}.tar. | | http://downloads.sourceforge.net/boost/boost_{{Boost_Version}}.tar.bz23 | ||
|} | |} | ||
| Line 19: | Line 16: | ||
Compile the package: | Compile the package: | ||
bjam --prefix=/usr | |||
bjam --prefix=/usr | |||
Install the package: | Install the package: | ||
| Line 33: | Line 28: | ||
Compile the package: | Compile the package: | ||
export USE_ARCH=32 && | export USE_ARCH=32 && | ||
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" /usr/bin/bjam-32 --prefix=/usr --toolset=gcc \ | CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" /usr/bin/bjam-32 --prefix=/usr --toolset=gcc \ | ||
| Line 59: | Line 53: | ||
Compile the package: | Compile the package: | ||
export USE_ARCH=64 && | export USE_ARCH=64 && | ||
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \ | CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \ | ||
| Line 68: | Line 61: | ||
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \ | CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \ | ||
/usr/bin/bjam-64 --prefix=/usr --libdir=/usr/lib64 --toolset=gcc install | /usr/bin/bjam-64 --prefix=/usr --libdir=/usr/lib64 --toolset=gcc install | ||
unset USE_ARCH | unset USE_ARCH | ||
Revision as of 14:06, 27 January 2008
| Download Source: | http://downloads.sourceforge.net/boost/boost_1_37_0.tar.bz23 |
|---|
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:
bjam --prefix=/usr
Install the package:
bjam --prefix=/usr install
Multilib
32Bit
Compile the package:
export USE_ARCH=32 &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" /usr/bin/bjam-32 --prefix=/usr --toolset=gcc \
address-model=32 cxxflags=${BUILD32} cflags=${BUILD32} architecture=x86
Install the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" /usr/bin/bjam-32 --prefix=/usr --toolset=gcc \
address-model=32 cxxflags=${BUILD32} cflags=${BUILD32} architecture=x86 install
unset USE_ARCH
N32
Compile the package:
To do...
Install the package:
To Do...
64Bit
Compile the package:
export USE_ARCH=64 &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
/usr/bin/bjam-64 --prefix=/usr --libdir=/usr/lib64 --toolset=gcc
Install the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
/usr/bin/bjam-64 --prefix=/usr --libdir=/usr/lib64 --toolset=gcc install
unset USE_ARCH
Contents
| Installed Directories: | /usr/include/boost-1_37_0 |
|---|---|
| Installed Programs: | None |
| Installed Libraries: | Many libraries |