Hi all,
a colleague asked me to post the following question:
When using the boost signal lib in VC6 (Win32 Console Application), the
linker produces the following errors:
msvcprt.lib(MSVCP60.dll) : error LNK2005: "public: __thiscall
std::_Lockit::~_Lockit(void)" (??1_Lockit@std@@QAE@XZ) already defined in
libcpd.lib(iostream.obj)
msvcprt.lib(MSVCP60.dll) : error LNK2005: "public: __thiscall
std::_Lockit::_Lockit(void)" (??0_Lockit@std@@QAE@XZ) already defined in
libcpd.lib(iostream.obj)
MSVCRT.lib(MSVCRT.dll) : error LNK2005: "public: __thiscall
exception::exception(class exception const &)" (??0exception@@QAE@ABV0@@Z)
already defined in LIBCD.lib(stdexcpt.obj)
MSVCRT.lib(MSVCRT.dll) : error LNK2005: "public: __thiscall
exception::exception(void)" (??0exception@@QAE@XZ) already defined in
LIBCD.lib(stdexcpt.obj)
MSVCRT.lib(MSVCRT.dll) : error LNK2005: "public: virtual __thiscall
exception::~exception(void)" (??1exception@@UAE@XZ) already defined in
LIBCD.lib(stdexcpt.obj)
LINK : warning LNK4098: defaultlib "MSVCRT" conflicts with use of other
libs; use /NODEFAULTLIB:library
Debug/boost.exe : fatal error LNK1169: one or more multiply defined symbols
found
There seems to be a conflict between the libraries signals.lib, libcpd.lib
and libcd.lib.
When I try to ignore the libraries libcpd.lib and libcd.lib in the project
settings, other linker errors occur when I use std::cout for example:
main.obj : error LNK2001: unresolved external symbol "class
std::basic_ostream