Boost logo

Boost :

From: Dave McCabe (dave.mccabe_at_[hidden])
Date: 2006-05-05 06:59:30


Anthony Williams:
> Any build of the library that requires MSVCPRT and MSVCRT is just
> broken, since they are the single-threaded runtime, and their use
> indicates that the library was built without MT support. I'm surprised
> the library manages to build at all without MT support, since the CRT
> thread functions, such as beginthread, aren't available unless MT
> support is enabled.

MSVCRT and MSVCPRT are the DLL runtimes, not the single-threaded ones; you're thinking of LIBC and LIBCP.

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...

--
David McCabe
________________________________________________________________________
This e-mail, and any attachment, is confidential. If you have received it in error, do not use or disclose the information in any way, notify me immediately, and please delete it from your system.
________________________________________________________________________

Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk