我一直在尝试使用gdb调试段错误,但它显示“??()”步骤中出现错误,我无法弄清楚其含义。任何人都可以暗示这意味着什么?
相关的回溯发布在下面。
(gdb) run
> (list-partition gt3 (quote (1 2 3 4 5)))
Program received signal SIGSEGV, Segmentation fault. 0xb7d900ac in ?? () from /lib/i386-linux-gnu/libc.so.6
(gdb) bt 10
#0 0xb7d900ac in ?? () from /lib/i386-linux-gnu/libc.so.6
#1 0xb7d92dec in malloc () from /lib/i386-linux-gnu/libc.so.6
#2 0xb7f8d627 in operator new(unsigned int) () from /usr/lib/i386-linux-gnu/libstdc++.so.6
#3 0xb7f727d4 in std::string::_Rep::_S_create(unsigned int, unsigned int, std::allocator<char> const&) () from /usr/lib/i386-linux-gnu/libstdc++.so.6
#4 0xb7f74a48 in char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) () from /usr/lib/i386-linux-gnu/libstdc++.so.6
#5 0xb7f74bb6 in std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, std::allocator<char> const&) () from /usr/lib/i386-linux-gnu/libstdc++.so.6
#6 0x080527fa in SymbolCell::get_symbol (this=0x80641e0) at SymbolCell.cpp:63
#7 0x080524c2 in SymbolCell::get_value (this=0x80641e0) at SymbolCell.cpp:88
#8 0x08053c20 in ConsCell::get_value (this=0x8064190) at ConsCell.cpp:195
#9 0x0804f287 in eval_pure (c=0x8064190) at eval_util.cpp:683 (More stack frames follow...)
值得注意的另一件事是程序在生成此错误之前实际运行了几秒钟,这在程序行为的上下文中非常不正常。
感谢任何建议!提前谢谢!
答案 0 :(得分:3)
??()
表示gdb无法找到符号信息。这对于您的问题不是必需的,因为堆栈已经深入库代码并且字符串/ new / malloc已经过充分测试。从SymbolCell::get_symbol
的第6帧开始,寻找问题。
编辑:我刚刚注意到您实际上正在运行lisp-code,因此您可能遇到了lisp环境的一些问题,或者更可能是内存不足。