0

我继承了一个带有 3 个项目的 C++ 解决方案,一个编译为 .DLL,另外两个编译为 .EXEs 。DLL 可以自行构建,但其他两个在构建时会产生大约 65 个 LNK2005 错误,其中大部分是引用相同的 .obj 文件,如下面的日志所示:


Linking...
Function.obj : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/OPT:ICF' specification
Function.obj : error LNK2005: _ReadLocalRegister already defined in Function.obj
Function.obj : error LNK2005: _getSource already defined in Function.obj
Function.obj : error LNK2005: _SendLogEvent already defined in Function.obj
Function.obj : error LNK2005: _DebugMsg already defined in Function.obj
Function.obj : error LNK2005: _MyInformationMsg already defined in Function.obj
MyNTService.obj : error LNK2005: "public: __thiscall CMyNTService::CMyNTService(void)" (??0CMyNTService@@QAE@XZ) already defined in MyNTService.obj
MyNTService.obj : error LNK2005: "public: virtual void __thiscall CMyNTService::OnStop(void)" (?OnStop@CMyNTService@@UAEXXZ) already defined in MyNTService.obj
MyNTService.obj : error LNK2005: "public: void __thiscall CMyNTService::SaveStatus(void)" (?SaveStatus@CMyNTService@@QAEXXZ) already defined in MyNTService.obj

....所以它继续!

我是一名 C# 编码员,只有基本的 C++ 知识,所以我对此感到迷茫。该解决方案是一个已有 15 年历史的 C 解决方案,我正在尝试在 VS2008 中将其重建为 C++ 解决方案。我已经设法构建了一次,没有任何改变,但也许从那时起一些配置设置已经改变。

有没有人有想法我可以开始寻找......?

非常感谢!

4

2 回答 2

0

听起来您在该对象的头文件中缺少包含保护。

添加:

#ifndef SomeUniqueName
#define SomeUniqueName

//Code goes here.

#endif

将代码包装在头文件中。编译器在处理您的代码时会多次检查该头文件,因为它包含在许多地方(很可能)。包含守卫停止重新定义在之前的传递中已经定义的事物。

PS:它也可能有助于做一个“清理”。Makefiles 可能很麻烦,特别是如果没有 100% 正确,有时当依赖关系关闭时,您需要在重建之前清理。

于 2012-08-07T14:03:04.463 回答
0

在 msvc110 (2012) 中,我遇到了同样的错误,我发现的唯一解决方法是为我在不同文件中使用的循环函数创建一个类和一个单独的 DLL。这是这样做的链接。

干杯

于 2016-01-13T14:39:21.487 回答