msvcprtd.lib(MSVCP90D.dll) : error LNK2005

工程使用了第三方库astt.lib, astt.lib已经在linker->input->additional dependencies中添加;
Runtime library为/MDd, LIBCPMT.LIB,LIBCPMTD.LIB在ignore specific library中添加。

 

出现的错误如下:
1>Linking...
1>msvcprtd.lib(MSVCP90D.dll) : error LNK2005: "public: class std::locale::facet * __thiscall std::locale::facet::_Decref(void)" (?_Decref@facet@locale@std@@QAEPAV123@XZ) already defined in astt.lib(CIScribble.obj)

 

应该是exe和lib所用MFC方式不同的缘故,你的astt用的是static MFC,所以某些msvcprtd.lib中的函数集成到了astt.lib中,而你的exe用的是share MFC dll,需要从系统找这些函数,当你用exe调用astt.lib时这些函数已经在astt.lib中存在了,导致冲突.
一种解决方案就是把exe和lib改为同样的调用MFC的方式,如果你有其他的解决方案,麻烦告诉我一下,我也经常碰到这种头疼的问题。

你可能感兴趣的:(mfc,dll,exe,facet,library,dependencies)