First set the BOOST_ROOT environment variable:
WinXP:
set BOOST_ROOT=D:\your\boost\sources
then in the BOOST_ROOT directory do:
boostrap.bat
this will create your bjam.exe and its environment. The next step is to call:
bjam toolset=msvc stage
This will compile your boost library and put all the libraries in a folder:
%BOOST_ROOT%\stage\lib
If you want to build everything, use:
bjam toolset=msvc -a --build-type=complete stage
You can install install instead, it will just install it in lib. During construction, a huge bin.v2 directory will be created with all the object files. General installation of aprox: 1.5 GB for libs (shared + static + debug & release).
source share