BJam

From CBLFS
Revision as of 09:15, 27 January 2008 by Jciccone (talk | contribs)
Jump to navigationJump to search
Download Source: http://downloads.sourceforge.net/boost/boost-jam-3.1.17.tgz

Introduction to BJam

Boost provides free portable peer-reviewed C++ libraries. The emphasis is on portable libraries which work well with the C++ Standard Library. See http://www.boost.org.

Project Homepage: Unknown

Dependencies

Non-Multilib

Compile the package:

./build.sh

The installation must be done manually. Copy the binaries from the created directory:

cd bin.linux* &&
cp -v bjam /usr/bin &&


Multilib

32Bit

Compile the package:

export CC="gcc"
export CFLAGS="-m32"
./build.sh cc
make

The installation must be done manually. Copy the binaries from the created directory:

cd bin.linux* &&
cp -v bjam /usr/bin/bjam-32 &&
unset CC &&
unset CFLAGS

N32

TO DO...

64Bit

Compile the package:

./build.sh

The installation must be done manually. Copy the binaries from the created directory:

cd bin.linux* &&
cp -v bjam /usr/bin/bjam-64 &&
ln -sfv multiarch_wrapper /usr/bin/bjam