Changes between Version 8 and Version 9 of Boost


Ignore:
Timestamp:
Jun 24, 2015, 8:41:27 AM (9 years ago)
Author:
dbanet
Comment:

the Boost repo is huge, so the a full checkout takes too much time (and bandwidth), and is also not needed to actually build Boost, so, unless one is going to commit changes and push them back, svn export is better, as it will download the files of the latest revision only, and will not create the .svn with all the history; also fixed formatting

Legend:

Unmodified
Added
Removed
Modified
  • Boost

    v8 v9  
    88
    99== Building Instructions ==
    10  * checkout the complete tree via "svn co http://svn.netlabs.org/repos/ports/boost/trunk"
    11  * run bootstrap.sh via "sh bootstrap.sh" (of course also ash and the like should work)
    12  * if your app needs a boost library do bjam --with-xxx link=static (where xxx is the library to build)
    13  * to see which libraries could be built do bjam --show-libraries
     10 * obtain the latest version via {{{svn export http://svn.netlabs.org/repos/ports/boost/trunk boost}}}
     11 * {{{cd boost && sh bootstrap.sh}}}
     12 * if your app needs a boost library do {{{bjam --with-xxx link=static}}} (where xxx is the library to build)
     13 * to see which libraries could be built do {{{bjam --show-libraries}}}
    1414 * as a requirement for boost_threads you need:
    1515   * pthread from 27.03.2015 or better (yum install/update pthread)