Difference between revisions of "Boost"

From CBLFS
Jump to navigationJump to search
Line 20: Line 20:
 
Compile the package:
 
Compile the package:
  
  patch -Np1 -i ../boost-{{Boost_Version2}}-fix-1.patch &&  
+
  patch -Np1 -i ../boost-{{Boost_Version2}}-fix-1.patch &&
  bjam --prefix=/usr  
+
  ./configure --prefix=/usr \
   
+
    --with-toolset=gcc --with-bjam=/usr/bin/bjam &&
 +
  make
 +
 
 
Install the package:
 
Install the package:
  
  bjam --prefix=/usr install
+
  make install
  
 
== Multilib ==
 
== Multilib ==
Line 34: Line 36:
  
 
  patch -Np1 -i ../boost-{{Boost_Version2}}-fix-1.patch &&
 
  patch -Np1 -i ../boost-{{Boost_Version2}}-fix-1.patch &&
 +
echo "flags gcc OPTIONS: ${BUILD32} ;" >> tools/build/v2/tools/gcc.jam &&
 
  export USE_ARCH=32 &&
 
  export USE_ARCH=32 &&
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" /usr/bin/bjam-32 --prefix=/usr --toolset=gcc \
+
  ./configure --prefix=/usr --with-toolset=gcc \
address-model=32 cxxflags=${BUILD32} cflags=${BUILD32} architecture=x86
+
    --with-bjam=/usr/bin/bjam &&
   
+
  make
  
 
Install the package:
 
Install the package:
  
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" /usr/bin/bjam-32 --prefix=/usr --toolset=gcc \
+
  make install &&
address-model=32 cxxflags=${BUILD32} cflags=${BUILD32} architecture=x86 install
 
 
  unset USE_ARCH
 
  unset USE_ARCH
  
Line 60: Line 62:
  
 
  patch -Np1 -i ../boost-{{Boost_Version2}}-fix-1.patch &&
 
  patch -Np1 -i ../boost-{{Boost_Version2}}-fix-1.patch &&
 +
echo "flags gcc OPTIONS: ${BUILD64} ;" >> tools/build/v2/tools/gcc.jam &&
 
  export USE_ARCH=64 &&
 
  export USE_ARCH=64 &&
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
+
  ./configure --prefix=/usr --libdir=/usr/lib64 \
/usr/bin/bjam-64 --prefix=/usr --libdir=/usr/lib64 --toolset=gcc
+
    --with-toolset=gcc --with-bjam=/usr/bin/bjam &&
 +
make
  
 
Install the package:
 
Install the package:
  
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
+
  make install &&
/usr/bin/bjam-64 --prefix=/usr --libdir=/usr/lib64 --toolset=gcc install
 
 
  unset USE_ARCH
 
  unset USE_ARCH
  

Revision as of 19:01, 27 January 2008

Download Source: http://downloads.sourceforge.net/boost/boost_1_37_0.tar.bz2
Download Patch: http://svn.cross-lfs.org/svn/repos/patches/boost/boost-1.37.0-fix-1.patch


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:

patch -Np1 -i ../boost-1.37.0-fix-1.patch &&
./configure --prefix=/usr \
    --with-toolset=gcc --with-bjam=/usr/bin/bjam &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

patch -Np1 -i ../boost-1.37.0-fix-1.patch &&
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:

patch -Np1 -i ../boost-1.37.0-fix-1.patch &&
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