[Boost-bugs] [ boost-Support Requests-1205155 ] Building errors on windows with vc71stlport

Support Requests item #1205155, was opened at 2005-05-19 10:28 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=207586&aid=1205155&group_id=7586 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) 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: c-C++ bin\boost\libs\date_time\build\boost_date_time.dll\vc-7_1-stlport\debug\threading-multi\greg_month.obj greg_month.cpp C:\Documents and Settings\BOUJAC00\Bureau\boost_1_32_0\boost\lexical_cast.hpp(150) : error C2679: binary '>>' : no operator found which takes a right-hand operand of type 'boost::date_time::date_names_put<Config,charT,OutputIterator>::string_type' (or there is no acceptable conversion) with [ Config=boost::gregorian::greg_facet_config, charT=wchar_t, OutputIterator=std::ostreambuf_iterator<wchar_t,std::char_traits<wchar_t>> ] The log of the build is include in log2.txt. Somebody have an idea of what I'm doing wrong? Thanks in advance JA jacques-andre.boulay@polymtl.ca ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=207586&aid=1205155&group_id=7586 ------------------------------------------------------- This SF.Net email is sponsored by Oracle Space Sweepstakes Want to be the first software developer in space? Enter now for the Oracle Space Sweepstakes! http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click _______________________________________________ Boost-bugs mailing list Boost-bugs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/boost-bugs

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
participants (2)
-
Bart
-
SourceForge.net