初用cuda,使用VS2008win32控制台平台,遇到一个问题,当工程中同时有.cpp文件与.cu文件,尝试编译运行时会出现:
1>MSVCRTD.lib(ti_inst.obj) : error LNK2005: "private: __thiscall type_info::type_info(class type_info const &)" (??0type_info@@AAE@ABV0@@Z) 已经在 LIBCMT.lib(typinfo.obj) 中定义
1>MSVCRTD.lib(ti_inst.obj) : error LNK2005: "private: class type_info & __thiscall type_info::operator=(class type_info const &)" (??4type_info@@AAEAAV0@ABV0@@Z) 已经在 LIBCMT.lib(typinfo.obj) 中定义
尝试使用在连接器->输入->忽略特定库中忽略 LIBCMT.lib则又出现错误:
1>main.cu.obj : error LNK2019: 无法解析的外部符号 __invalid_parameter_noinfo,该符号在函数 "public: char & __thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::operator[](unsigned int)" (??A?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEAADI@Z) 中被引用
1>libcpmt.lib(cout.obj) : error LNK2001: 无法解析的外部符号 __invalid_parameter_noinfo
1>libcpmt.lib(xmbtowc.obj) : error LNK2019: 无法解析的外部符号 __malloc_crt,该符号在函数 __GetLocaleForCP 中被引用
1>libcpmt.lib(_tolower.obj) : error LNK2019: 无法解析的外部符号 __calloc_crt,该符号在函数 __Getctype 中被引用
1>C:\Users\HP\Documents\Visual Studio 2008\Projects\studyCUDA\Debug\studyCUDA.exe : fatal error LNK1120: 3 个无法解析的外部命令
觉得这种方法有问题,后来查了一些资料,发现产生问题的原因是:
CUDA runtime使用的是statically linked C runtime而VS默认使用的是dynamically loaded C runtime ,解决方法很简单,在项目右击->属性->C/C++ -> 代码生成,将运行时库改成 多线程(MT)就可以了。
参看:http://stackoverflow.com/questions/2098627/how-to-integrate-cuda-cu-code-with-c-app