gpt4 book ai didi

c++ - curlpp 链接错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:10:10 26 4
gpt4 key购买 nike

我编写了一个 C++ 程序并尝试使用 curlpp 通过 SSL 安全地访问 http 服务器。问题是,我无法链接程序。

操作系统:Ubuntu 15.10

错误:

/usr/bin/cmake -E cmake_link_script CMakeFiles/prtg_probe.dir/link.txt --verbose=1 Wird gelinkt prtg_probe (c++) CMakeFiles/prtg_probe.dir/probe.cpp.o: In function curlpp::internal::OptionContainer, std::allocator >, std::allocator, std::allocator > > >

::OptionContainer(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > > const&)': /usr/include/curlpp/internal/OptionContainer.inl:38: undefined reference to curlpp::internal::SList::SList(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > > const&)' CMakeFiles/prtg_probe.dir/probe.cpp.o: In function curlpp::internal::OptionContainer, std::allocator >, std::allocator, std::allocator > > > ::setValue(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > > const&)': /usr/include/curlpp/internal/OptionContainer.inl:52: undefined reference to `curlpp::internal::SList::operator=(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > > const&)' ....

这是产生错误的代码:

#include <iostream>
#include <sstream>
#include <string>
#include <cstring>
#include <cctype>
#include <cstddef>
#include <cstdio>
#include <cstdlib>
#include <fstream>
#include <cerrno>
#include <boost/bind.hpp>
#include <curlpp/cURLpp.hpp>
#include <curlpp/Easy.hpp>
#include <curlpp/Options.hpp>
#include <curlpp/Exception.hpp>

....

class myclass
{

....

try
{
curlpp::Cleanup cleaner;
curlpp::Easy request;
ostringstream os;

request.setOpt(new curlpp::options::Url(&url_announce[0]));
request.setOpt(new curlpp::options::SslEngineDefault());
list<string> header;
header.push_back("Content-Type: text/*");
request.setOpt(new curlpp::options::HttpHeader(header));
request.setOpt(new curlpp::options::PostFields(data_announce));
request.setOpt(new curlpp::options::PostFieldSize((long)data_announce.length()));
request.setOpt(new curlpp::options::WriteStream(&os));
request.perform();
request_announce = os.str();
}
catch (curlpp::LogicError & e)
{
syslog(LOG_DAEMON, "Error accessing PRTG server: %s", e.what());
}
catch (curlpp::RuntimeError & e)
{
syslog(LOG_DAEMON, "Error accessing PRTG server: %s", e.what());
}

带有 curlpp::options::... 的每一行都会在链接时产生一个错误。我环顾四周并在 Google 上搜索了几个小时,但我发现的只是将 libcurl 与 libcurl 链接在一起。我这样做了,但仍然出现此错误。

这是完整的链接行:

/usr/bin/c++   -g    CMakeFiles/prtg_probe.dir/sensors.cpp.o 
CMakeFiles/prtg_probe.dir/mini_probe.cpp.o CMakeFiles/prtg_probe.dir/probe.cpp.o
CMakeFiles/prtg_probe.dir/helper.cpp.o
CMakeFiles/prtg_probe.dir/config.cpp.o CMakeFiles/prtg_probe.dir/main.cpp.o
-o prtg_probe -rdynamic -lm -lpthread -lcrypto -lssl -lcurlpp -lcurl -lboost_system -lboost_filesystem -ljsoncpp -luuid

有人知道我错过了什么吗?我是否必须再添加一个库,如果需要,添加哪个库?


我已经尝试编译 example00.cpp使用以下命令:

g++ -o example00 example00.cpp -lm -lcurl -lcurlpp

结果:

/tmp/cc3pcvDc.o: In Funktion `curlpp::OptionTrait<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, (CURLoption)10002>::updateHandleToMe(curlpp::internal::CurlHandle*) const':
example00.cpp: (.text._ZNK6curlpp11OptionTraitINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEL10CURLoption10002EE16updateHandleToMeEPNS_8internal10CurlHandleE[_ZNK6curlpp11OptionTraitINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEL10CURLoption10002EE16updateHandleToMeEPNS_8internal10CurlHandleE]+0x68):
Nicht definierter Verweis auf `curlpp::UnsetOption::UnsetOption(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
/tmp/cc3pcvDc.o: In Funktion `curlpp::Option<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::getValue() const':
example00.cpp: (.text._ZNK6curlpp6OptionINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE8getValueEv[_ZNK6curlpp6OptionINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE8getValueEv]+0x68):
Nicht definierter Verweis auf `curlpp::UnsetOption::UnsetOption(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
collect2: error: ld returned 1 exit status

这对我来说是同样的问题。

最佳答案

问题是 ccurlcpp::UnsetOption::UnsetOption 的链接lipcurlcpp.so 二进制文件有部分缺陷。

链接器的投诉:

g++ -o example00 example00.cpp -lm -lcurl -lcurlpp

是:

undefined reference to `curlpp::UnsetOption::UnsetOption(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'

但是如果我在 libcurlpp.so 中分解构造函数签名:

nm -D -C libcurlpp.so | grep UnsetOption::UnsetOption

我明白了:

0000000000021776 T curlpp::UnsetOption::UnsetOption(char const*)
000000000002173e T curlpp::UnsetOption::UnsetOption(std::string const&)

由于某些原因,std::string 尚未正确反类型定义。如果我从中获取了定义此构造函数的源文件curlpp 0.7.3源码包,Exception.cpp,编译:

curlpp-0.7.3/src/curlpp$ g++ -I../../include -I. -c Exception.cpp

然后从目标文件中分解构造函数签名:

nm -C Exception.o | grep UnsetOption::UnsetOption

我得到:

00000000000003f4 T curlpp::UnsetOption::UnsetOption(char const*)
00000000000003c2 T curlpp::UnsetOption::UnsetOption(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)

所以:

curlpp::UnsetOption::UnsetOption(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)

是编译器告诉链接器要查找的签名,但那是不是图书馆里的签名。错误的简短解释是:库已损坏。

但是,我们看到没有这样的不一致影响构造函数的其他重载:

curlpp::UnsetOption::UnsetOption(char const*)

也不可能,因为 char const * 是内置类型。

这会启用黑客修复。 undefined reference 调用所在的文件已编译(已安装)/usr/include/curlpp/Option.inl,在以下行:

throw UnsetOption(std::string("You are trying to set an unset option to a handle"));

以 root 身份编辑此文件,您会看到它(不一致地)包含两个实例的:

throw UnsetOption(std::string("blah blah"));

和一个实例:

throw UnsetOption("blah blah");

将出现的 UnsetOption(std::string("blah blah")) 更改为 UnsetOption("blah blah")。然后在这个文件中只调用好的构造函数,至少 example00 会编译链接。

如果您不喜欢黑客攻击,或者发现问题在别处再次出现,那么您可以下载ubuntu源码包curlpp_0.7.3.orig.tar.gz并自己构建和安装它。这是正确的补救措施。

关于c++ - curlpp 链接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33420631/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com