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}}} |
14 | | * as a requirement for boost_threads you need: |
15 | | * pthread from 27.03.2015 or better (yum install/update pthread) |
| 11 | * {{{cd boost && sh bootstrap.sh --prefix=/@unixroot/usr}}} |
| 12 | * for full installation do {{{b2 install}}} |
| 13 | * if you only want to build certain libraries without installation for use with a certain application (you are trying to port), use[[br]] |
| 14 | {{{b2 link=static --with-library_name}}}, where ''library_name'' is the library to build |
| 15 | * a list of all libraries that could be built may be obtained via {{{b2 --show-libraries}}} |
| 16 | * as a requirement for {{{boost_threads}}} you need: |
| 17 | * {{{pthread}}} from 27.03.2015 or better ({{{yum install pthread}}}/{{{yum update pthread}}}) |