1

我正在尝试在我的项目中使用 log4cplus 作为记录器。我已经在 VS2013 中成功下载并编译了“Debug_Unicode”和“Release_Unicode”的 log4cplus(项目在 Release 和 Debug 中成功编译)。

在我的“项目属性->配置属性”中,我添加了:

  1. 'log4cplus\include' 到 'C/C++->All Options->Additional Include Directories'
  2. 'log4cplus\msvc10\Win32\obj.log4cplus.Release_Unicode' 到 'Linker->All Options->Additional Library Directories'
  3. '链接器->所有选项->附加依赖项'中的'log4cplusu.lib'

我还确保在 log4cplus 项目和我自己的项目中使用相同的运行时库,在我的情况下为多线程 DLL (/MD)。

但是当我尝试构建我的项目时,我收到以下链接错误:

error LNK2001: unresolved external symbol "class
std::basic_ostringstream<char,struct std::char_traits<char>,class
std::allocator<char> > & __cdecl
log4cplus::detail::get_macro_body_oss(void)"
(?get_macro_body_oss@detail@log4cplus@@YAAAV?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)

error LNK2001: unresolved external symbol "void __cdecl
log4cplus::detail::macro_forced_log(class log4cplus::Logger const
&,int,class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> > const &,char const *,int,char const *)"
(?macro_forced_log@detail@log4cplus@@YAXABVLogger@2@HABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBDH2@Z)

fatal error LNK1120: 2 unresolved externals
4

1 回答 1

2

Windows UNICODE 构建是使用TCHARetc. 定义为wchar_tetc 构建的。当不使用UNICODE定义为构建时,构建TCHAR定义为charetc。

构建一个UNICODE已定义的库并尝试将其链接到未定义的项目UNICODE中将导致链接器错误,因为TCHAR;的定义将不匹配。charwchar_t..

UNICODE要更正此问题,请使用(and _UNICODE)的一致定义构建所有必需的库和项目。

这可以通过任何一个来完成;

#define UNICODE
#define _UNICODE

或者在项目设置中;

项目属性 > 常规 > 项目默认值 > 字符集

或者在命令行上;

/DUNICODE /D_UNICODE

替代方法也适用,如果不打算使用 UNICODE,请确保未设置定义,和/或在项目中使用多字符设置并一致应用。

不要忘记在“发布”和“调试”版本之间保持一致。

于 2016-04-06T13:17:59.543 回答