c++boost.gif (8819 bytes)Building Boost Libraries

Introduction
Preliminaries
Building Boost Libraries
Configuring the tools
Supported Toolsets
Boost.Jam executable

Introduction

These instructions explain how to accomplish common tasks using Boost.Build, the Boost Build System. The build system uses Boost.Jam, an extension of the Perforce Jam portable make replacement.

For tasks not covered here, see the full build system documentation.

Note that many Boost libraries are implemented entirely within their headers, and so can be used without building object libraries. Libraries that do require building object libraries first include the Python, Regex, Signal, and Threads libraries.

Preliminaries

Building Boost Libraries

Using your operating system's command line interpreter, execute the following steps. The sample commands given will work for both UNIX and Windows.

 

Configuring the tools

The build system's toolsets are designed to work in either of two ways:

  1. The user sets up all of the environment for each toolset he wants to use in the normal way. For example, for Microsoft VC++, ...vc98/bin is in the path, vcvars32.bat or equivalent has been invoked, etc. For Metrowerks CodeWarrior, cwenv.bat or equivalent has been called and ...Other Metrowerks Tools/Command Line Tools is in the path. Many Unix operating systems come preconfigured this way and require no user intervention.

  2. The user doesn't want his environment cluttered with settings or has non-standard installations for some of his tools. Instead, he or she sets variables which point to the toolset installation directories, either in the command shell environment or on the bjam command-line. These variables are used by the build system to locate the tools and invoke the necessary setup.

Supported Toolsets

The following toolsets are supported by Boost.Build. For information about configuring each toolset, click its name in the leftmost column.

TOOLS Name Description
borland Borland C++
darwin Apple Darwin OS hosted GNU GCC.
como Comeau C++ compiler front-end for Windows, using Microsoft Visual C++as a back-end.
gcc GNU GCC on Unix and Cygwin.
gcc-stlport GNU GCC on Unix and Cygwin, using the STLport standard library implementation
gcc-nocygwin GNU GCC Cygwin command line compiler tools running in "no-cygwin" mode (produces commercially redistributable objects)
intel-win32 Intel C++ for Windows using the Dinkumware standard library in the Intel-required Microsoft Visual C++ 6 or 7 installation
intel-linux Intel C++ for Linux
kcc KAI C++
kylix Borland C++ for Linux (Kylix).
metrowerks Metrowerks CodeWarrior command-line tools
cwpro8 Metrowerks CodeWarrior Pro 8.x command-line tools
mingw GNU GCC and associated tools in MinGW configuration (produces commercially redistributable objects)
mipspro SGI MIPSpro C and C++
msvc Microsoft Visual C++ command-line tools.
msvc-stlport Microsoft Visual C++ command-line tools, using the STLport standard library implementation
tru64cxx Compaq C++ for Tru64 UNIX (versions prior to 6.5)
tru64cxx65 Compaq C++ Version 6.5 for Tru64 UNIX
vacpp IBM Visual Age C++ command-line tools
vc7 Microsoft Visual C++ command-line tools, in case you are using the msvc toolset for a Visual C++ 6.x.

Unless otherwise specified, the library is assumed to be the one shipped with the compiler.

Additional tools can be supplied by adding an appropriate xxxx-tools.jam file to the tools/build subdirectory, where xxxx is the name of the tool being added. If you write an additional toolset file, please submit it to Boost so others may benefit from your work.

Boost.Jam executable

Pre-built Boost.Jam executables are available from the SourceForge download section. Included are plain binaries, packaged binaries, and the source. The Boost.Jam source files are also included in the Boost distribution, so you can build the Boost.Jam executable yourself:

Windows 9x users should note that the bjam executable will produce command lines too long for command.com to handle.

Cygwin users can use the cygwin executable to work around Windows 9x command line length problems, but only if they are using cygwin-gcc compiler (other windows compilers don't play particularly well with this executable).


Revised 16 December, 2002

© Copyright 2001 Beman Dawes