$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Roland Schwarz (roland.schwarz_at_[hidden])
Date: 2006-05-05 10:50:14
Dave McCabe wrote:
> I have STLport versions, but:
> 
> C:\Boost\lib>dumpbin /directives libboost_thread-vc71-mt-sp-1_33_1.lib | findstr DEFAULTLIB | sort | uniq
>    /DEFAULTLIB:"LIBCMT"
>    /DEFAULTLIB:"libcpmt"
>    /DEFAULTLIB:"OLDNAMES"
>    /DEFAULTLIB:"stlport_vc71_static.lib"
>    /DEFAULTLIB:"uuid.lib"
> 
> C:\Boost\lib>dumpbin /directives libboost_thread-vc71-mt-p-1_33_1.lib | findstr DEFAULTLIB | sort | uniq
>    /DEFAULTLIB:"msvcprt"
>    /DEFAULTLIB:"MSVCRT"
>    /DEFAULTLIB:"OLDNAMES"
>    /DEFAULTLIB:"stlport_vc71.lib"
>    /DEFAULTLIB:"uuid.lib"
> 
> Looks like someone has managed to build the static version against DLL runtimes, or just done some creative renaming...
Don't know what you think is wrong on the above. These two dumpbin 
indicate correct behaviour.
The -s- indicates linking to static runtime, while missing s means 
dynamic runtime. Or did I misunderstand you?
Roland