Implement crash handling on Linux

This will allow us to generate crash dumps and have users report
crashes.
This commit is contained in:
Forkk 2014-05-09 17:33:32 -05:00
parent cf616efb5d
commit 93ae21abfc
8 changed files with 279 additions and 1 deletions

View file

@ -1,6 +1,12 @@
#include "MultiMC.h"
#include "gui/MainWindow.h"
// Crash handling
#ifdef HANDLE_SEGV
#include <HandleCrash.h>
#endif
int main_gui(MultiMC &app)
{
// show main window
@ -23,6 +29,11 @@ int main(int argc, char *argv[])
Q_INIT_RESOURCE(multimc);
Q_INIT_RESOURCE(backgrounds);
#ifdef HANDLE_SEGV
// Register signal handler for generating crash reports.
initBlackMagic();
#endif
switch (app.status())
{
case MultiMC::Initialized: