系统相关
首页 > 系统相关> > linux下用QT捕获程序异常

linux下用QT捕获程序异常

作者:互联网

linux下的QT,没有类似VS捕获系统级异常的功能,可以采用qbreakpad捕获系统级异常。用法如下:

一、部署环境,下载安装包

git clone https://github.com/buzzySmile/qBreakpad.git
git clone https://github.com/google/breakpad
git clone https://github.com/adelshokhy112/linux-syscall-support.git

二、应用示例

.pro文件编写

QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
#CONFIG -= app_bundle #配置上这个参数以后 你的图形界面程序就会以命令行方式运行
CONFIG -= app_bundle
TARGET = catchExceptions
TEMPLATE = app

#config for qBreakpad
# 要加上c++11,qbreakpad、breakpad都是基于c++11编写的
CONFIG += c++11 console
CONFIG +=  warn_on
CONFIG += thread exceptions rtti stl
macx: LIBS += -framework AppKit
#link qBreakpad library
include($$PWD/qBreakpad/qBreakpad.pri)
#end of config for qBreakpad

DEFINES += QT_DEPRECATED_WARNINGS

FORMS += \
    mainwindow.ui

HEADERS += mainwindow.h
SOURCES += \
        main.cpp\
        mainwindow.cpp
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target

源代码编写

#include "mainwindow.h"
#include <QApplication>
#include "QBreakpadHandler.h"

int crash(int a,int b) {
    return a/b;
   }
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QBreakpadInstance.setDumpPath(QLatin1String("crashes"));
    MainWindow w;
    w.show();
	int x=5/0;
    crash(5,0);
    return a.exec();
}

当程序发生崩溃后会有如下提示,并生成存放崩溃信息的dmp文件
在这里插入图片描述
三、查看崩溃信息

addr2line 0x406263 -e '可执行程序名字' -f

在这里插入图片描述

标签:QT,breakpad,下用,编译,int,qbreakpad,linux,qBreakpad
来源: https://blog.csdn.net/qq_45601625/article/details/121444053