编译 cpp-netlib v0.9 时出现未解决的外部符号错误

发布于 2024-11-24 12:08:48 字数 1281 浏览 0 评论 0原文

我正在尝试从 Visual Studio 构建 cpp-netlib 库2010 但出现以下链接器错误:

错误 LNK2019:无法解析的外部符号“bool __cdecl boost::network::uri::detail::parse_uri_impl(类 boost::iterator_range,类 std::allocator > > &,结构体 boost::network::uri::detail::uri_parts_default_base &,struct boost::network::tags::default_string)" (?parse_uri_impl@detail@uri@network@boost@@YA_NAAV?$iterator_range@V?$_String_const_iterator@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@4@AAUuri_parts_default_base @1234@Udefault_string@tags@34@@Z) 在函数“bool __cdecl”中引用 升压::网络::uri::详细::parse_uri,类 std::分配器>,结构 boost::network::http::tags::http_default_8bit_tcp_resolve>(类 std::basic_string,类 std::分配器> &,结构体 boost::network::uri::detail::uri_parts &)" (??$parse_uri@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@Uhttp_default_8bit_tcp_resolve@tags@http@network@boost@@@detail@uri@网络@boo st@@YA_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAU?$uri_parts@Uhttp_default_8bit_tcp_resolve@tags@http@network@boost@@@0123@ @Z)

经过一番挖掘发现,这可能与我正在使用的 Boost 版本 (1.46.1) 有关,但我尝试针对 1.47.0 和 1.45.0 进行编译,并得到相同的错误。

编译这个库需要什么?

I am trying to build the cpp-netlib library from Visual Studio 2010 but get the following linker error:

error LNK2019: unresolved external symbol "bool __cdecl
boost::network::uri::detail::parse_uri_impl(class
boost::iterator_range,class std::allocator > > &,struct
boost::network::uri::detail::uri_parts_default_base &,struct
boost::network::tags::default_string)"
(?parse_uri_impl@detail@uri@network@boost@@YA_NAAV?$iterator_range@V?$_String_const_iterator@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@4@AAUuri_parts_default_base@1234@Udefault_string@tags@34@@Z)
referenced in function "bool __cdecl
boost::network::uri::detail::parse_uri,class
std::allocator >,struct
boost::network::http::tags::http_default_8bit_tcp_resolve>(class
std::basic_string,class
std::allocator > &,struct
boost::network::uri::detail::uri_parts &)"
(??$parse_uri@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@Uhttp_default_8bit_tcp_resolve@tags@http@network@boost@@@detail@uri@network@boost@@YA_NAAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAU?$uri_parts@Uhttp_default_8bit_tcp_resolve@tags@http@network@boost@@@0123@@Z)

A little bit of digging turned up that this could be related to the version of Boost I'm using (1.46.1) but I have tried compiling against both 1.47.0 and 1.45.0 and get the same error.

What is required to get this library to compile?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萝莉病 2024-12-01 12:08:48

经过大量搜索后,我发现 帖子和来自该库的创建者,其中提到:

  1. 关闭与宏链接所需的外部库的选项 (BOOST_NETWORK_NO_LIB)。之前定义了这个宏
    包含(或在命令行上)任何 cpp-netlib 标头
    命名空间中的外部函数或自由函数
    级别被标记为“内联”并引入其定义
    相应地在每个翻译单元中。这解决了杰夫·加兰的问题
    以及其他人在使用时需要外部库的担忧
    cpp-netlib 在 0.9 之前一直是仅包含头文件的。我还在
    与将仅标头行为作为一个想法进行斗争
    默认,但我不喜欢“默认外部库”
    也可以做出决定。

如果我在 cpp-netlib 标头之前添加该宏定义,我就可以进行编译:

#define BOOST_NETWORK_NO_LIB

#include <boost/network/protocol/http/client.hpp>

在第二篇文章中,我发现还提到“您需要构建/链接 uri 库”,这听起来像是一个更好的解决方案。

不幸的是,我对 C++ 和 boost 的了解不是最好的,所以我只是选择了有效的方法。

欢迎任何更好的方法,尽管我真正想做的就是编译该库,以便我可以评估它的实际用途,所以我现在很高兴。

After a lot of searching I found this post and this one from the creator of the library, mentioning:

  1. An option to turn off the required external library to be linked with a macro (BOOST_NETWORK_NO_LIB). With this macro defined before
    any cpp-netlib headers are included (or on the command line) the
    functions that were made extern or just free functions at namespace
    level are marked 'inline' and have their definitions pulled in
    accordingly in each translation unit. This addresses Jeff Garland's
    and others' concern of the need for an external library when using
    cpp-netlib when it's always been header-only until 0.9. I'm still
    wrestling with the thought of making the header-only behavior a
    default, but I'm not married to the "external library as default"
    decision either.

I am able to compile if I add that macro definition before my cpp-netlib headers like so:

#define BOOST_NETWORK_NO_LIB

#include <boost/network/protocol/http/client.hpp>

In the second post I found there is also mention of "You need to build/link against the uri library" which sounds like it might be a better solution.

Unfortunately my knowledge of c++ and boost isn't the best so I just went with what worked.

Any better approaches are welcome, though all I really wanted to do was compile the library so I can evaluate it for real use, so I'm happy right now.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文