I downloaded the Boost libraries and now I want to build only a few of the libraries. What would be the right command for this? Apparently the build-type=complete option gives me too much.
I am using Windows XP and want to use Bjam to compile Boost and MinGW to finally use it. At the moment I think I need the libraries Boost.filesystem, Boost.ProgramOptions and Boost.System.
Another question: Where do I put the header-only libraries?
In step 5.2.4 of Getting Started you can instruct
b2which libraries to build:Alternatively, use
./b2 --show-librariesto see a list of all libraries that are not header-only.Following is an excerpt from the page:
Note:
b2command depends upon boost version so use following commands as per your boost version(Also, in this case use--with-libraries=<comma-seperated-library-names>version instead of--with-<library-name>):./configurefor1.38.0and earlier./bootstrap.shfor1.39.0onwards till1.46.0