Implement crash handling on Linux
This will allow us to generate crash dumps and have users report crashes.
This commit is contained in:
parent
cf616efb5d
commit
93ae21abfc
8 changed files with 279 additions and 1 deletions
11
main.cpp
11
main.cpp
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue