mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-14 12:37:23 +00:00
Implement crash handling on Linux
This will allow us to generate crash dumps and have users report crashes.
This commit is contained in:
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:
|
||||
|
||||
Reference in New Issue
Block a user