编译错误"MSVCRTD.lib(MSVCRTD.dll):errorLNK200

简介:
 
今天在编译vc工程时出现的错误,并在网上找到了解决方法,有类似问题的请参照
本人在编译VC6.0工程时,遇到如下错误:
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _getenv   already   defined   in   LIBCMTD.lib(getenv.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _free   already   defined   in   LIBCMTD.lib(dbgheap.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _calloc   already   defined   in   LIBCMTD.lib(dbgheap.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _malloc   already   defined   in   LIBCMTD.lib(dbgheap.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _printf   already   defined   in   xlibgui.lib(PRINTF.OBJ)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _fflush   already   defined   in   LIBCMTD.lib(fflush.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _sprintf   already   defined   in   LIBCMTD.lib(sprintf.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _strncpy   already   defined   in   LIBCMTD.lib(strncpy.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _atoi   already   defined   in   LIBCMTD.lib(atox.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _realloc   already   defined   in   LIBCMTD.lib(dbgheap.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _signal   already   defined   in   LIBCMTD.lib(winsig.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   __controlfp   already   defined   in   LIBCMTD.lib(ieee87.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   error   LNK2005:   _exit   already   defined   in   LIBCMTD.lib(crt0dat.obj)
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _getenv   already   defined   in   LIBCMTD.lib(getenv.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _free   already   defined   in   LIBCMTD.lib(dbgheap.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _calloc   already   defined   in   LIBCMTD.lib(dbgheap.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _malloc   already   defined   in   LIBCMTD.lib(dbgheap.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _printf   already   defined   in   xlibgui.lib(PRINTF.OBJ);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _fflush   already   defined   in   LIBCMTD.lib(fflush.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _sprintf   already   defined   in   LIBCMTD.lib(sprintf.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _strncpy   already   defined   in   LIBCMTD.lib(strncpy.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _atoi   already   defined   in   LIBCMTD.lib(atox.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _realloc   already   defined   in   LIBCMTD.lib(dbgheap.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _signal   already   defined   in   LIBCMTD.lib(winsig.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   __controlfp   already   defined   in   LIBCMTD.lib(ieee87.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _exit   already   defined   in   LIBCMTD.lib(crt0dat.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _fclose   already   defined   in   LIBCMTD.lib(fclose.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _fopen   already   defined   in   LIBCMTD.lib(fopen.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   __stricmp   already   defined   in   LIBCMTD.lib(stricmp.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _fprintf   already   defined   in   LIBCMTD.lib(fprintf.obj);   second   definition   ignored
MSVCRTD.lib(MSVCRTD.dll)   :   warning   LNK4006:   _ceil   already   defined   in   LIBCMTD.lib(ceil.obj);   second   definition   ignored
      Creating   library   Debug/shm_ext_sim.lib   and   object   Debug/shm_ext_sim.exp
LINK   :   warning   LNK4098:   defaultlib   "MSVCRTD"   conflicts   with   use   of   other   libs;   use   /NODEFAULTLIB:library
LINK   :   warning   LNK4098:   defaultlib   "MSVCRT"   conflicts   with   use   of   other   libs;   use   /NODEFAULTLIB:library
Debug/shm_ext_sim.exe   :   fatal   error   LNK1169:   one   or   more   multiply   defined   symbols   found
Error   executing   link.exe.

shm_ext_sim.exe   -   37   error(s),   86   warning(s)
 
 
原因及解决方法:
主程序和lib所使用的运行库不一致,project->setting-> Generation->Use MFC Static Library

网友:本站网友 时间:2006-08-27 14:24:11 IP地址:202.194.210.
For example, if you received this warning and you want to create an executable file that uses the non-debug, single-threaded version of the run-time libraries, you could use the following options with the linker: 

/NODEFAULTLIB:libcmt.lib /NODEFAULTLIB:msvcrt.lib /NODEFAULTLIB:libcd.lib /NODEFAULTLIB:libcmtd.lib /NODEFAULTLIB:msvcrtd.lib 

或者这样:For example, if you received this warning and you want to create an executable file that uses the non-debug, single-threaded version of the run-time libraries, you could use the following options with the linker:

/NODEFAULTLIB:libcmt.lib /NODEFAULTLIB:msvcrt.lib /NODEFAULTLIB:libcd.lib /NODEFAULTLIB:libcmtd.lib /NODEFAULTLIB写程序看到 warning,感觉不爽。 这个警告在 link option 中 加入 对应的 /NODEFAULTLIB:xxx.lib   就ok了
目录
相关文章
|
关系型数据库 MySQL 网络安全
|
关系型数据库 MySQL Linux
【Linux】jdk & Tomcat & MySql的安装及Linux后端接口部署
【Linux】jdk & Tomcat & MySql的安装及Linux后端接口部署
321 0
|
C++ Windows
第1个Qt项目:计算器
第1个Qt项目:计算器
308 1
第1个Qt项目:计算器
|
存储 机器学习/深度学习 人工智能
数据结构学习笔记——图的存储结构(邻接矩阵和邻接表)
数据结构学习笔记——图的存储结构(邻接矩阵和邻接表)
数据结构学习笔记——图的存储结构(邻接矩阵和邻接表)
|
SQL 前端开发 关系型数据库
MySQL only_full_group_by 1055 报错的三种解决方案,临时关闭有影响吗?
当我们迁移到 MySQL 5.7+ 的版本时,常会碰到 `ERROR 1055 only_full_group_by` 错误,这是 5.7 之后 `SQL_MODE` 默认打开了严格模式导致的错误。说明你代码里有地方写的不严谨。
1693 0
|
存储 数据挖掘 Apache
Apache Doris + Iceberg 快速搭建指南|Lakehouse 使用手册(三)
如何在 Docker 环境下快速搭建 Apache Doris + Apache Iceberg 测试 & 演示环境,并展示各功能的使用操作
673 8
Apache Doris + Iceberg 快速搭建指南|Lakehouse 使用手册(三)
|
JavaScript IDE 开发工具
【VsCode+LeetCode】优雅玩法
【VsCode+LeetCode】优雅玩法
502 0
|
Linux
gpio_direction_output 和 gpio_set_value之间的关系
gpio_direction_output 和 gpio_set_value之间的关系
991 0
|
机器学习/深度学习 人工智能 API
成功解决urllib.error.URLError: <urlopen error [Errno 11001] getaddrinfo failed>
成功解决urllib.error.URLError: <urlopen error [Errno 11001] getaddrinfo failed>