2012-02-07 27 views
1

我正在構建一個與OpenCV庫靜態鏈接的win32應用程序。在第一次嘗試,我被生成日誌指示而忽略默認庫,msvcprtd.lib和libcmtd.lib因爲有很多很多的鏈接錯誤,如字符串流的鏈接錯誤

"LIBCMTD.lib(sprintf.obj) : error LNK2005: _sprintf already defined in MSVCRTD.lib(MSVCR100D.dll)" 

在構建日誌中的最後兩句

1>LINK : warning LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use /NODEFAULTLIB:library 
1>LINK : warning LNK4098: defaultlib 'LIBCMTD' conflicts with use of other libs; use /NODEFAULTLIB:library 

我排除這兩個庫之後,我不能夠使用字符串流或COUT,因爲我得到以下編譯錯誤:

error LNK2001: unresolved external symbol "__declspec(dllimport) class std::basic_ostream<char,struct std::char_traits<char> > std::cout" ([email protected]@@[email protected][email protected]@[email protected]@@[email protected]) 
1>run.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: virtual __thiscall std::basic_iostream<char,struct std::char_traits<char> >::~basic_iostream<char,struct std::char_traits<char> >(void)" ([email protected][email protected]@[email protected]@@[email protected]@[email protected]) referenced in function [email protected][email protected]@[email protected]@[email protected]@[email protected]@[email protected]@[email protected]@Z$0 
1>run.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall std::basic_iostream<char,struct std::char_traits<char> >::basic_iostream<char,struct std::char_traits<char> >(class std::basic_streambuf<char,struct std::char_traits<char> > *)" ([email protected][email protected]@[email protected]@@[email protected]@[email protected][email protected][email protected]@[email protected]@@[email protected]@Z) referenced in function "public: __thiscall std::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> >::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> >(int)" ([email protected][email protected]@[email protected]@[email protected]@[email protected]@[email protected]@[email protected]@Z) 
1>run.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) protected: void __thiscall std::basic_streambuf<char,struct std::char_traits<char> >::setp(char *,char *,char *)" ([email protected][email protected][email protected]@[email protected]@@[email protected]@[email protected]) referenced in function "protected: virtual int __thiscall std::basic_stringbuf<char,struct std::char_traits<char>,class std::allocator<char> >::overflow(int)" ([email protected][email protected][email protected]@[email protected]@[email protected]@[email protected]@[email protected]@[email protected]) 
1>run.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) protected: char * __thiscall std::basic_streambuf<char,struct std::char_traits<char> >::pbase(void)const " ([email protected][email protected][email protected]@[email protected]@@[email protected]@IBEPADXZ) referenced in function "protected: virtual int __thiscall std::basic_stringbuf<char,struct std::char_traits<char>,class std::allocator<char> >::overflow(int)" ([email protected][email protected][email protected]@[email protected]@V?$alloca[email protected]@[email protected]@[email protected]@[email protected]) 

任何人都遇到類似的錯誤S'

+0

聽起來像OpenCV靜態庫是爲了鏈接到不同的MSVS運行時。您是否閱讀發行說明? – 2012-02-08 00:01:26

+1

請參閱:http://stackoverflow.com/editing-help以獲取格式幫助。 – 2012-02-08 00:05:34

回答

0

每當Visual Studio開始抱怨MSVCRTD.libLIBCMTD.lib之間的衝突時,您可以確定您正在將在Microsft運行時元素中不一致鏈接的項目鏈接在一起。

你提到你使用的OpenCV是靜態鏈接的,我敢打賭你的項目是動態鏈接的。您應該設置解決方案文件,以便靜態鏈接所有項目或動態鏈接所有項目。