From 8ee1dd3bd74de976f460742cca3dbd3543658024 Mon Sep 17 00:00:00 2001 From: Be Date: Tue, 7 Apr 2020 20:34:56 -0500 Subject: [PATCH] hack around macOS segfault on startup https://bugs.launchpad.net/mixxx/+bug/1871238 --- src/util/logging.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/util/logging.cpp b/src/util/logging.cpp index e97adf3748f..3a83610a903 100644 --- a/src/util/logging.cpp +++ b/src/util/logging.cpp @@ -199,8 +199,11 @@ void Logging::initialize(const QDir& settingsDir, // Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=1227295 // Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886437 // Ubuntu: https://bugs.launchpad.net/ubuntu/+source/qtbase-opensource-src/+bug/1731646 + // Somehow this causes a segfault on macOS though?? https://bugs.launchpad.net/mixxx/+bug/1871238 +#ifdef __LINUX__ QLoggingCategory::setFilterRules("*.debug=true\n" "qt.*.debug=false"); +#endif } // static