libboost_unit_test_framework-vc71-mt-s-1_33.lib?
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!
On 12/3/05, gast128
Mingjun Huang
writes: Hello, I am a newbie for Boost. Could anyone give me some directions on
how to build boost on my PC with Visual Studio .NET 2003 installed? Thanks a lot!
Best, -Mingjun
_______________________________________________ Boost-users mailing list Boost-users <at> lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
or http://www.codeproject.com/tips/Building_boost_libraries.asp
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
Mingjun Huang wrote:
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!
As pointed out here: http://www.boost.org/more/getting_started.html#Results The "-s" part of that name is for static linking to the runtime. Since you specified "<runtime-link>dynamic" you'll never get the above library. Either you want the "libboost_unit_test_framework-vc71-mt-1_33.lib" library. Or you want to build with: bjam "-sBUILD=release <runtime-link>static <threading>multi" "-sTOOLS=vc-7_1" Of course that's assuming the build combination is supported by the Boost.Test library. HTH. -- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com -- 102708583/icq - grafikrobot/aim - Grafik/jabber.org
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.
participants (3)
-
John Maddock
-
Mingjun Huang
-
Rene Rivera