
Summary: Building errors on windows with vc71stlport
Initial Comment: Hi,
I'm trying to install Boost on windows xp with stlport and Visual Studio .Net 2003. When building it with "bjam "-sTOOLS=vc-7_1-stlport" install" I'm obtaining errors that seems like:
...snip...
The log of the build is include in log2.txt. Somebody have an idea of what I'm doing wrong?
Stlport was not built with wchar_t support (this is the default). You have two choices to work around this issue. You can rebuild stlport with wchar_t support by adding /Zc:wchar_t to the makefile and then build date_time with: (from $boost_root) bjam -a "-sTOOLS=vc-7_1-stlport" "-sSTLPORT_PATH=..." "-sBUILD=<native-wchar_t>on" --stagedir=... --with-date_time stage Or, you can build date_time w/o wstrings:bjam -a "-sTOOLS=vc-7_1-stlport" "-sSTLPORT_PATH=..." "-sBUILD=<define>BOOST_NO_STD_WSTRING" --stagedir=... --with-date_time stage(adjust the elipses accordingly)Bart