wiki:TryModBoost

Version 12 (modified by Beman Dawes, 9 years ago) ( diff )

Expand to cover some additional topics

Getting Started with Modular Boost

Prerequisites

  • Git command line client installed
  • A C++ compiler installed

Choose a protocol for cloning

The Boost super-project and libraries on GitHub support cloning via HTTPS or SSH protocols. SSH is often used by developers, but HTTPS is preferable for those behind corporate firewalls. To use HTTPS instead of SSH, replace git@github.com:boostorg/boost.git in the examples below with https://github.com/boostorg/boost.git.

Authentication

The Boost super-project and libraries have been set up using relative URLs, so whichever protocol you use in the git clone command will determine how subsequent access to the super-project and libraries is authenticated.

Installing Modular Boost

From the command line on Windows:

git clone --recursive git@github.com:boostorg/boost.git modular-boost
cd modular-boost
.\bootstrap
.\b2 headers

Or, from the command line on POSIX-like operating systems:

git clone --recursive git@github.com:boostorg/boost.git modular-boost
cd modular-boost
./bootstrap.sh
./b2 headers

The b2 headers step creates the boost sub-directory hierarchy and populates it with links to the headers in the include sub-directories of the individual projects.

Experimenting

If you want to build the separately compiled Boost libraries, run the usual b2 command. For Windows, that would be:

.\b2

For POSIX-like systems, it is probably:

./b2

If b2 isn't already in your path, you might want to add it now.

Testing is done just the way it has always been done. For example,

cd libs/system/test
b2

should run the tests for Boost.system, all of which should pass.

Developing

Checking out a particular branch

The clone operation above leaves the modular-boost local repository, including the individual libraries, in a zombie-like state that is not very useful and can result in data loss. So the first thing you want to do is switch to the branch you want to work on:

git checkout develop

develop corresponds to svn trunk, and is the starting point for simple changes that do not justify creating a new branch.

Note: See TracWiki for help on using the wiki.