| 21 | |
| 22 | From this point on, modularized Boost behaves a lot like pre-modularized Boost. |
| 23 | |
| 24 | == Experimenting == |
| 25 | |
| 26 | If you want to build b2 and Boost source libraries, run the usual command line script. For Windows, that would be: |
| 27 | |
| 28 | {{{ |
| 29 | bootstrap |
| 30 | .\b2 |
| 31 | }}} |
| 32 | |
| 33 | For POSIX-like systems, it is probably: |
| 34 | |
| 35 | {{{ |
| 36 | ./bootstrap.sh |
| 37 | ./b2 |
| 38 | }}} |
| 39 | |
| 40 | If b2 isn't already in your path, you probably want to add it now. |
| 41 | |
| 42 | Testing is done just the way it has always been done. For example, |
| 43 | |
| 44 | {{{ |
| 45 | cd libs/system/test |
| 46 | b2 |
| 47 | }}} |
| 48 | |
| 49 | should run the tests for Boost.system, all of which should pass. |