cpp-netlib 的二进制文件
我想知道是否可以获得现在存在于版本 0.9.1 的 cpp-netlib 中的 Windows 静态库(x86 和 x64)的二进制文件?
坦率地说,在 Windows 上编译它对我来说是一件痛苦的事情。
谢谢
I would like to know if it is possible to get the binaries for the static library for windows (x86 and x64) now present in cpp-netlib for the version 0.9.1?
Frankly it is a pain to compile this on windows for me.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
新版本的 cpp-netlib 现在确实需要构建。我已经在此处回答了如何构建它
New version's of cpp-netlib now do require building. I have answered how to build it on here
看起来 cpp-netlib 是一个仅包含头文件的库,尽管它依赖于一些 boost 编译的库,例如 Boost.System、Boost.Date_time 和 Boost.Regex。您可以在互联网上轻松找到 boost 预编译库。您还需要将 boost 标头包含在您的构建路径中。尽管 cpp-netlib 说 Boost 1.41.0 就可以,但实际上,0.9.1 版本需要 Boost 1.46.0 或更高版本(只需获取最新的 1.47.0)。
您还可以尝试定义 BOOST_NETWORK_NO_LIB 这应该会有所帮助。
It seems that cpp-netlib is a header-only library, although it relies on some boost compiled libraries, such as Boost.System, Boost.Date_time, and Boost.Regex. You can easily find boost pre-compiled libraries all over the Internet. You will also need the boost headers to be in your build path as well. Even though cpp-netlib says that Boost 1.41.0 will do, in actuality, version 0.9.1 requires Boost version 1.46.0 or later (just grab the latest which is 1.47.0).
You could also try defining BOOST_NETWORK_NO_LIB which should help out.