yunxig wrote:
Thank you very much. Yes, I defined __STL_DEBUG for project->properties->Preprocessor, there's no compiling errors. But there's Linking errors: LINK : fatal error LNK1104: cannot open file 'libboost_thread-vc80-mt-gdp- 1_33_1.lib'
In fact, there's no such lib in BOOST lib. I'm looking for the answer.
Blast, we don't have an official build toolset for VC8+STLport in 1.33.1 :-( If you want to hack one up: in tools/build/v1 copy vc-7_1-stlport-tools.jam and call it vc-8_0-stlport-tools.jam, then replace all occurances of "71" in the file with "80", and use this as the build/install toolset as described in the getting started guide: http://www.boost.org/more/getting_started.html Alternatively you could probably figure out how to build the thread lib in your favorite IDE. HTH, John.