Difference between revisions of "BJam"

From CBLFS
Jump to navigationJump to search
(New page: {| style="text-align: left; background-color: AliceBlue;" |-valign="top" !Download Source: | http://sourceforge.net/project/downloading.php?group_id=7586&use_mirror=easynews&filename=boost...)
 
Line 38: Line 38:
  
 
  cd bin.linux* &&
 
  cd bin.linux* &&
  cp -v jam /usr/bin/jam-32 &&
+
  cp -v jam /usr/bin/bjam-32 &&
 
  unset CC
 
  unset CC
 
  unset CFLAGS
 
  unset CFLAGS

Revision as of 21:13, 26 January 2008

Download Source: http://sourceforge.net/project/downloading.php?group_id=7586&use_mirror=easynews&filename=boost-jam-3.1.16.tgz&31712604

Introduction to BJam

Jam is a software build tool.

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 jam /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 jam /usr/bin/bjam-64 &&
ln -sfv multiarch_wrapper /usr/bin/bjam &&