构建 C++ 时出现链接错误VS.NET 2010 中的单元测试项目
我正在尝试构建一个非常简单的 C++ 单元测试项目。设置恰好与此 博客 描述。我构建了一个静态库 TestLib.lib 和一个名为 TestProject 的 C++ 单元测试项目。这两个项目都使用平台工具集 v100。
Testlib 仅包含一个类。
BaseClass.h
#pragma once
class BaseClass
{
public:
void Method1();
};
BaseClass.cpp
#include "BaseClass.h"
#include <iostream>
#include <list>
using namespace std;
void BaseClass::Method1()
{
list<int> dummy(0);
cout << "Hello world";
}
TestProject 只有一个测试用例。
#include "BaseClass.h"
#include <list>
.
.
.
[TestMethod]
void TestMethod1()
{
BaseClass b;
b.Method1();
};
看起来如果我在 #include "BaseClass.h"
之后有一个 #include
(在 test.cpp 中),我将出现以下链接错误。如果我取出#include
,则根本没有链接错误。
TestLib.lib(BaseClass.obj) : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/INCREMENTAL:NO' specification
MSVCMRT.lib(locale0_implib.obj) : error LNK2022: metadata operation failed (8013118D) : Inconsistent layout information in duplicated types (std.basic_string<char,std::char_traits<char>,std::allocator<char> >): (0x0200003d).
MSVCMRT.lib(locale0_implib.obj) : error LNK2022: metadata operation failed (8013118D) : Inconsistent layout information in duplicated types (std.basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >): (0x02000063).
LINK : fatal error LNK1255: link failed because of metadata errors
如果我在测试程序中再添加一行,链接错误就会消失,如下所示:
#include "BaseClass.h"
#include <list>
.
.
.
[TestMethod]
void TestMethod1()
{
std::list<int> dummy(0);
BaseClass b;
b.Method1();
};
但是,现在,我有两个链接警告。我不确定它们是否与之前的链接错误有关。
TestLib.lib(BaseClass.obj) : warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/INCREMENTAL:NO' specification
LINK : warning LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use /NODEFAULTLIB:library
有人能解释一下为什么吗?我在这里错过了一些明显的东西吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
错误是否仅在编译 Debug 配置时出现?如果是这样,则可能与您的 C++ 运行时库链接有关:
http://social.msdn.microsoft.com/Forums/eu/vclanguage/thread/e5a78770-4d99-40b7-951f-e4466d2744a8
Does the error only show up when compiling the Debug configuration? If so, it may be related to your C++ run-time library linkage:
http://social.msdn.microsoft.com/Forums/eu/vclanguage/thread/e5a78770-4d99-40b7-951f-e4466d2744a8