Skip to content
Snippets Groups Projects
Commit 8d6fec5c authored by Andrew A. de Laix's avatar Andrew A. de Laix
Browse files

For developer Nix builds, default handle signal after crash report. Linux...

For developer Nix builds, default handle signal after crash report.  Linux should generate a core dump; Darwin a mac crash report.
parent 4e6580bf
No related branches found
No related tags found
No related merge requests found
...@@ -863,7 +863,13 @@ bool unix_post_minidump_callback(const char *dump_dir, ...@@ -863,7 +863,13 @@ bool unix_post_minidump_callback(const char *dump_dir,
llinfos << "generated minidump: " << LLApp::instance()->getMiniDumpFilename() << llendl; llinfos << "generated minidump: " << LLApp::instance()->getMiniDumpFilename() << llendl;
LLApp::runErrorHandler(); LLApp::runErrorHandler();
#ifndef LL_RELEASE_FOR_DOWNLOAD
clear_signals();
return false;
#else
return true; return true;
#endif
} }
#endif // !WINDOWS #endif // !WINDOWS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment