| 38 | |
| 39 | Example command(s) for building boost from source (building only parts used by Mussa): |
| 40 | |
| 41 | Win32 w/ Mingw |
| 42 | {{{ |
| 43 | bjam "-sTOOLS=mingw" --with-python-version=2.4 --with-python --with-program_options --with-filesystem --with-serialization --with-test install |
| 44 | }}} |
| 45 | |
| 46 | Win32 w/ Visual Studio 2005 |
| 47 | {{{ |
| 48 | bjam "-sTOOLS=vc-8_0" --with-python-version=2.4 --with-python --with-program_options --with-filesystem --with-serialization --with-test install |
| 49 | }}} |
| 50 | |
| 51 | Debian (Why build from source when you have Debian packages?): |
| 52 | {{{ |
| 53 | apt-get install libboost-python-dev libboost-python1.33.1 libboost-program-options-dev libboost-program-options1.33.1 libboost-serialization-dev libboost-test-dev libboost-test1.33.1 |
| 54 | }}} |
| 55 | |
| 56 | |