【问题标题】:Visual Studio linking error LNK2005 and LNK2020Visual Studio 链接错误 LNK2005 和 LNK2020
【发布时间】:2010-01-22 13:30:13
【问题描述】:

我正在使用 Visual Studio 2003,我的项目中出现以下链接错误:

Linking...
LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/INCREMENTAL:NO' specification
msvcrtd.lib(MSVCR71D.dll) : error LNK2005: _fprintf already defined in LIBCMTD.lib(fprintf.obj)
C:\Documents and Settings\mz07\Desktop\project\HLconsoleExample\Debug\HLconsoleExample.exe : fatal error LNK1169: one or more multiply defined symbols found

然后我将 libcmtd.lib 包含到“忽略特定库”行中并得到另一个错误:

Linking...
LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/INCREMENTAL:NO' specification
LINK : error LNK2020: unresolved token (0A000037) _CxxThrowException
LINK : error LNK2020: unresolved token (0A000039) delete
LINK : fatal error LNK1120: 2 unresolved externals

这是我主要课程的开始:

#include <cstdio>
#include <iostream>

#if defined(WIN32)
# include <conio.h>
#else
# include "conio.h"
#endif

#include <HL/hl.h>
#include <HD/hd.h>

#include <HDU/hduVector.h>
#include <HDU/hduError.h>
...
int main(int argc, char *argv[])
{
  HHD hHD;
  HHLRC hHLRC;
  HDErrorInfo error;
...
}

我将我正在使用的所有库都包含在链接器属性中。这是它的命令行输出:

/OUT:"C:\Documents and Settings\mz07\Desktop\project\HLconsoleExample\Debug\HLconsoleExample.exe" /INCREMENTAL /NOLOGO /NODEFAULTLIB:"libcmtd.lib" /DEBUG /ASSEMBLYDEBUG /PDB:"C:\Documents and Settings\mz07\Desktop\project\HLconsoleExample\Debug/HLconsoleExample.pdb" /FIXED:No hl.lib hd.lib HDUD.lib  kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib "\Program Files\SensAble\3DTouch\lib\hl.lib" "\Program Files\SensAble\3DTouch\lib\hd.lib" "\Program Files\SensAble\3DTouch\utilities\src\Hdu\Debug\HDUD.lib"

我是 C++ 新手,我不太了解链接是如何工作的 :),因此不胜感激。

【问题讨论】:

    标签: c++ visual-studio linker


    【解决方案1】:

    您正在链接一个 .lib,其代码是使用不兼容的编译器设置编译的。问题之一是项目 + 属性、C/C++、代码生成、运行时库。 /MD 与 /MT 不兼容。您要么必须重建 .libs 以匹配您的 .exe 项目设置,要么相反。

    【讨论】:

      猜你喜欢
      • 2023-03-31
      • 2010-10-31
      • 1970-01-01
      • 2012-12-17
      • 1970-01-01
      • 2012-03-30
      • 2011-10-01
      • 2010-11-26
      • 2016-02-19
      相关资源
      最近更新 更多