14

我正在使用 Linux x86_64 机器来构建我的程序。我已将共享库链接到可执行文件。在我的项目中,我正在调用一个在函数vector<string>内部声明的函数。当该函数被调用时,我的程序被杀死。通过下面的 GDB 进行调试时,我得到了输出。

Program received signal SIGILL, Illegal instruction.
0x00002aaaac4d2be7 in OC_Catalog_c::File_ToText (this=0x611aa0) at /usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h:87
87              : _Tp_alloc_type(__a), _M_start(0), _M_finish(0), _M_end_of_storage(0)
(gdb) bt
0  0x00002aaaac4d2be7 in OC_Catalog_c::File_ToText (this=0x611aa0) at /usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/stl_vector.h:87

这是我的共享库编译的问题吗?把我的头撞得够呛。请帮忙。

-查克斯

为您的查询添加更多信息:是的,我调用 File_ToText 的函数是 OC_Catalog_c 类中的虚函数。其他类的成员变量具有类 OC_Catalog_c 的对象,该对象也具有虚函数 File_ToText。使用该对象,我正在从虚函数 File_ToText 调用 OC_Catlog_c 的 File_ToText 函数。我将展示一个代码片段:

class Oc_Catalog_c  
{
    virtual vector<string>  File_ToText             (void) const; 
}

class B
{
    const OC_Catalog_c*         m_pCatalog;
    virtual vector<string>  File_ToText             (void) const; 
}

vector<string> B::File_ToText( void ) const
{
    vector<string> a_SubData;
    a_SubData = m_pCatalog->File_ToText();
}
4

1 回答 1

14

谢谢你们的帮助。我终于找出了导致此错误的问题。
调试更多并跟踪指令我发现程序在 ud2a 指令处失败。
我忽略了一个警告“警告:不能通过'...'传递非POD类型'struct sqlrw_request_cb'的对象;调用将在运行时中止”。
解决这些警告解决了我与 SIGILL 相关的问题。
此链接的更多解释: ud2a 指令导致 SIGILL

于 2013-08-25T19:23:04.180 回答