GCC与g ++ - dw2似乎没有捕获异常

时间:2012-01-09 17:21:59

标签: c++ qt gcc

当我在运行使用gcc 4.6.1编译的程序时尝试捕获异常并且编译器已在qt g ++中设置 - dw2我无法捕获任何异常。我最简单:

#include <QApplication>
#include <QtDebug>
int main(int c,char**v)
{
    QApplication app(c,v);
    try
    {
        throw 1;
    }
    catch(int i)
    {
        qDebug() << i;
    }

    return app.exec();
}  

这次崩溃告诉我:
enter image description here

有没有办法让这个gcc工作并实际支持异常?

0 个答案:

没有答案