2

我完全被这个问题难住了,无法真正弄清楚如何解决这个问题。

基本上,我在 Visual Studio 2010 中编译了gloox库(稍加调整就可以正常工作)并得到一个 .lib 和一个 .dll 文件。我现在正试图在一个使用很多 gloox 功能的不同程序中使用它。我可以很好地链接大多数符号,除了一个:

1>test.obj : error LNK2001: unresolved external symbol "class
std::basic_string<char,struct std::char_traits<char>,
class std::allocator<char> > 
const gloox::EmptyString" (?EmptyString@gloox@@3V?$basic_string@DU?$
char_traits@D@std@@V?$allocator@D@2@@std@@B)

当我对我的程序进行详细链接时,我可以看到来自 gloox lib 的所有其他符号都被链接到正常:

1>      Searching ..\..\lib\lib\gloox 1.0.lib:
1>        Found "public: virtual __thiscall gloox::Message::~Message(void)" (??       1Message@gloox@@UAE@XZ)
1>          Referenced in test.obj
1>          Loaded gloox 1.0.lib(gloox 1.0.dll)
1>        Found "public: __thiscall gloox::Message::Message(enum   gloox::Message::MessageType,class gloox::JID const &,class std::basic_string<char,struct  std::char_traits<char>,class std::allocator<char> > const &,class  std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0Message@gloox@@QAE@W4MessageType@01@ABVJID@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@222@Z)
1>          Referenced in test.obj
1>          Loaded gloox 1.0.lib(gloox 1.0.dll)
1>        Found "public: void __thiscall gloox::ClientBase::registerPresenceHandler(class gloox::PresenceHandler *)" (?registerPresenceHandler@ClientBase@gloox@@QAEXPAVPresenceHandler@2@@Z)
1>          Referenced in test.obj
1>          Loaded gloox 1.0.lib(gloox 1.0.dll)
...

所以我想,可能符号没有正确导出,我这样做了:

dumpbin.exe /exports gloox 1.0.lib

除其他外,我还看到了这一点:

??_FXHtmlIM@gloox@@QAEXXZ (public: void __thiscall gloox::XHtmlIM::`default constructor closure'(void))
?EmptyString@gloox@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@B (class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const gloox::EmptyString)
?GLOOX_CAPS_NODE@gloox@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@B (class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const gloox::GLOOX_CAPS_NODE)

第二行显示符号已正常导出。

现在我能想到的唯一区别是正确加载的符号都是函数,而这个特定的符号是一个变量。不过,只要它的导出权限正确,链接器就应该看到它,对吧?

任何帮助将不胜感激。如果您需要更多信息,请告诉我。

谢谢!

4

3 回答 3

3

旧帖子,但可能对其他人仍有帮助。

解决方案是确保GLOOX_IMPORTS已定义。它macros.h用于定义:

define GLOOX_API __declspec( dllexport )
于 2013-07-19T06:44:32.447 回答
0

不知道你是否仍然坚持这一点,但我通过修改 gloox 包含的 message.h 文件解决了这个问题。我将构造函数更改为:

Message( MessageType type, const JID& to,
         const std::string& body = EmptyString, const std::string& subject = EmptyString,
         const std::string& thread = EmptyString, const std::string& xmllang = EmptyString );

至:

Message( MessageType type, const JID& to,
         const std::string& body = "", const std::string& subject = "",
         const std::string& thread = "", const std::string& xmllang = "" );
于 2012-08-21T08:51:33.407 回答
0

最近,当我尝试编译 gloox 相关代码时,我也遇到了类似的问题。

我发现这是因为库项目不包含定义所谓的未解析外部符号的源文件。

对于您的情况,未解析的外部符号是gloox::EmptyString 它在 gloox.cpp 中定义。

所以检查你的gloox 库项目,它的

源文件列表包括gloox.cpp

头文件列表包括gloox.h?

如果它丢失,请包括它然后我认为你会解决这个错误。我用一天的时间发现了这一点,因为我假设我从 gloox 网站下载的库项目应该包含所有必要的源文件,但实际上它不像我假设的那样!

我是怎么检查的

我在库项目中更改为构建 dll而不是 lib。如果你在 gloox 库项目中编译 dll 时遇到同样的错误,那么你应该检查你的库项目是否包含 gloox.cpp。

于 2014-12-31T03:06:08.430 回答