Changes between Version 7 and Version 8 of TryModBoost


Ignore:
Timestamp:
Jul 19, 2013, 1:39:55 AM (9 years ago)
Author:
Beman Dawes
Comment:

Add b2 headers step

Legend:

Unmodified
Added
Removed
Modified
  • TryModBoost

    v7 v8  
    88== Installing Modular Boost ==
    99
    10 From the command line:
     10From the command line on Window:
    1111
    1212{{{
    1313git clone --recursive https://github.com/boostorg/boost.git modular-boost
     14cd modular-boost
     15bootstrap
     16.\b2 headers
    1417}}}
    1518
    16   || '''Warning: The build tools are not working as of the moment, so the remaining instructions on this page don't work yet.''' ||
     19Or, from the command line on POSIX-like operating systems:
     20
     21{{{
     22git clone --recursive https://github.com/boostorg/boost.git modular-boost
     23cd modular-boost
     24./bootstrap.sh
     25./b2 headers
     26}}}
     27
     28The {{{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.
    1729
    1830From this point on, modularized Boost behaves a lot like pre-modularized Boost.
     
    2032== Experimenting ==
    2133
    22 If you want to build b2 and Boost source libraries, run the usual command line script. For Windows, that would be:
     34If you want to build the separately compiled Boost libraries, run the usual {{{b2}}} command. For Windows, that would be:
    2335
    2436{{{
    25 bootstrap
    2637.\b2
    2738}}}
     
    3041
    3142{{{
    32 ./bootstrap.sh
    3343./b2
    3444}}}
    3545
    36 If b2 isn't already in your path, you probably want to add it now.
     46If {{{b2}}} isn't already in your path, you might want to add it now.
    3747
    3848Testing is done just the way it has always been done. For example,