I'm building an application against some legacy, third party libraries, and having problems with the linking stage. I'm trying to compile with Visual Studio 9. My compile command is:
cl -DNT40 -DPOMDLL -DCRTAPI1=cdecl -DCRTAPI2=cdecl -DWIN32 -DWIN32 -DWIN32LEANANDMEAN -DWNT -DBYPASSFLEX -D_INTEL=1 -DIPLIB=none -I. -I"D:\src\include" -I"C:\Program Files\Microsoft Visual Studio 9.0\VC\include" -c -nologo -EHsc -W1 -Ox -Oy- -MD mymain.c
The code compiles cleanly. The link command is:
link -debug -nologo -machine:IX86 -verbose:lib -subsystem:console mymain.obj wsock32.lib advapi32.lib msvcrt.lib oldnames.lib kernel32.lib winmm.lib [snip large list of dependencies] D:\src\lib\app_main.obj -out:mymain.exe
The errors that I'm getting are:
appmain.obj : error LNK2019: unresolved external symbol "_declspec(dllimport) public: void thiscall std::locale::facet::Register(void)" (imp?Register@facet@locale@std@@QAEXXZ) referenced in function "class std::ctype const & _cdecl std::usefacet \>(class std::locale const &)" (??$usefacet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z)
appmain.obj : error LNK2019: unresolved external symbol "declspec(dllimport) public: static unsigned int _cdecl std::ctype::Getcat(class std::locale::facet const * *)" (imp?Getcat@?$ctype@D@std@@SAIPAPBVfacet@locale@2@@Z) referenced in function "class std::ctype const & _cdecl std::usefacet \>(class std::locale const &)" (??$usefacet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z)
appmain.obj : error LNK2019: unresolved external symbol "declspec(dllimport) public: static unsigned int _cdecl std::ctype::Getcat(class std::locale::facet const * *)" (imp?Getcat@?$ctype@G@std@@SAIPAPBVfacet@locale@2@@Z) referenced in function "class std::ctype const & _cdecl std::usefacet >(class std::locale const &)" (??$usefacet@V?$ctype@G@std@@@std@@YAABV?$ctype@G@0@ABVlocale@0@@Z)
mymain.exe : fatal error LNK1120: 3 unresolved externals
Notice that these errors are coming from the legacy code, not my code - app_main.obj is part of the legacy code, while mymain.c is my source. I've done some searching around, and what that I've read says that this type of error is caused by a mismatch with the -MD switch between my code and the library that I'm linking to. Since I'm dealing with legacy code, a solution has to come from my environment. It's been a long time since I've done C++ work, and even longer since I've used Visual Studio, so I'm hoping that this is just some ignorance on my part. Any ideas on how to get these resolved?
