I'm doing the following but still unable to get libboost_thread_vc100-mt-1_62.lib (Multi threaded library).
b2.exe link=shared threading=multi runtime-link=shared --with-regex --with-thread --with-chrono --toolset=msvc-10.0 address-model=64
The above builds the dll, but the lib file is named as 'boost_thread-vc100-mt-1_62.lib'.
b2.exe link=static threading=multi runtime-link=static --with-regex --with-thread --with-chrono --toolset=msvc-10.0 address-model=64 --build-type=complete
This builds the static library with the name (libboost_thread-vc100-mt-s-1_62.lib)
I'm looking for libboost_thread-vc100-mt-1_62.lib. How to build the same?