Joaquin M Lopez Munoz wrote:
Marcello Pietrobon <pietrom <at> attglobal.net> writes:

  
Hi,

I am not sure if this is the right place for this post.
If not, please let me know where should I post this.

Using msvc71 on WinXP
Using stlport  5.1.3 and downloaded boost 1.34.1 (not from cvs )

I am getting in many places this linker error:
test_comparison.obj : error LNK2019: unresolved external symbol 
"__declspec(dllimport) public: unsigned int __thiscall 
stlpd_std::basic_string<wchar_t...>
    

This is a shot in the dark, but the wchar_t thing caught my eye.
The environment where the regression tests for VC 7.1 + STLport
4.6.2 are run has the following (http://tinyurl.com/3x3e6g ):

  <quote>
  the following flags were used in the vc71.mak file:

  EXTRA_COMMON_FLAGS=/FI "vc_warning_disable.h" /D "_MBCS" /Zc:wchar_t
  </quote>

Maybe you're not using /Zc:wchar_t and this makes a difference?

Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo


_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
  

No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 269.9.14/883 - Release Date: 7/1/2007 12:19 PM

Hola !
thanks so much !
I completely forgot about that!

It works well. now.

With boost 1.34.1 + stlport 5.1.3
all the boost libraries compile ok now
( with the exception of only one error on the iostream library:
boost\iostreams\positioning.hpp(27) : error C2039: 'fpos_t' : is not a member of 'operator``global namespace'''
boost\iostreams\positioning.hpp(27) : error C2873: 'fpos_t' : symbol cannot be used in a using-declaration )


But all your library compile and pass all tests.
Including the test_modifiers which was reported having problems.

Thank you !!
Marcello