5 Dec
2005
5 Dec
'05
10:23 a.m.
I have built boost using: bjam "-sBUILD=release <runtime-link>dynamic <threading>multi" "-sTOOLS=vc-7_1"
but I can not find the library file: libboost_unit_test_framework-vc71-mt-s-1_33.lib
can anyone give me a hand? Thanks so much!
You've only built Boost for the dynamic MSVC runtime, but libboost_unit_test_framework-vc71-mt-s-1_33.lib is the library file for the static runtime (hense the -s suffix). Why not follow the getting started guide (http://www.boost.org/more/getting_started.html#Build_Install) and build all the variants? John.