gpt4 book ai didi

gdb - 使用 boost::iostreams 时未找到警告消息 RTTI 符号

转载 作者:行者123 更新时间:2023-12-04 15:01:36 24 4
gpt4 key购买 nike

我使用 Boost::iostreams 同时写入我的控制台和文件。当我使用 eclipse 进行调试(当然是使用 gdb)时,我收到一条警告,提示我在 Boost::iostreams 中使用的其中一个类没有找到 RTTI 符号。

这是重现问题的最少代码。

#ifndef BOOST_IO_STREAM_H_
#define BOOST_IO_STREAM_H_

#include <fstream>
#include <boost/iostreams/tee.hpp>
#include <boost/iostreams/stream.hpp>
using boost::iostreams::tee_device;
using boost::iostreams::stream;

typedef tee_device<std::ostream, std::ofstream> TeeDevice;
typedef stream<TeeDevice> TeeStream;

#endif /* BOOST_IO_STREAM_H_ */

int
main()
{

/* A config file to output experiment details */
std::string self_filename = "./experimentconfig.txt";
std::ofstream fconfig(self_filename.c_str());
TeeDevice my_tee(std::cout, fconfig);
TeeStream cool_cout(my_tee);

cool_cout << "Output to file and console during experiment run" << std::endl;

return 0;
}

当我越过 TeeStream cool_cout(my_tee);在调试期间,我收到以下警告:
warning: RTTI symbol not found for class 'boost::iostreams::stream<boost::iostreams::tee_device<std::ostream, std::basic_ofstream<char, std::char_traits<char> > >, std::char_traits<char>, std::allocator<char> >'
warning: RTTI symbol not found for class 'boost::iostreams::stream_buffer<boost::iostreams::tee_device<std::ostream, std::basic_ofstream<char, std::char_traits<char> > >, std::char_traits<char>, std::allocator<char>, boost::iostreams::output>'

每当遇到对象 cool_cout 时都会重复警告。我该如何解决?当然,使用此代码的程序可以工作,我对此没有任何问题。警告不应被忽略,并且必须获得一些有关 RTTI 符号的知识。 (我无法使用 -f nortti 进行编译,然后可执行文件提示 rtti 绝对应该启用以使用 iostreams)

最佳答案

您应该关注的警告来自编译器,它实际上是创建您的程序的原因。最终用户不应使用调试器,它对您的二进制文件本身没有影响。

虽然 gdb 有时会发现问题,但其中的许多警告是因为 gdb 消耗了调试符号,而使用者 (gdb) 有错误和防御。通常他们只是减少了 gdb 的功能。
在这种情况下,调试器中关于该类的信息较少。它使调试更加困难,但不会损害应用程序本身。

对于如何处理此错误,您有多种选择。

  • 忽略 gdb 中的警告并继续生活。
  • 获取 gdb 的源代码并尝试查找问题并提交补丁。我相信它会受到欢迎。
  • 使用不同的调试器。 (不过,我见过的所有替代品都是付费产品。)
  • 重写程序以不使用任何模板。 gdb 模板处理是大多数符号查找问题存在的地方。
  • 关于gdb - 使用 boost::iostreams 时未找到警告消息 RTTI 符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12986261/

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