Skip to content
Snippets Groups Projects
Commit 478c3b3e authored by Joe Donofry's avatar Joe Donofry
Browse files

Fix Backtrace define error for Windows

parent 4a9a35e7
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,7 @@
QQmlDebuggingEnabler enabler;
#endif
#if !defined(Q_OS_WINDOWS)
#if HAVE_BACKTRACE_SYMBOLS_FD
#include <csignal>
#include <execinfo.h>
......@@ -92,6 +93,7 @@ registerSignalHandlers()
std::signal(SIGABRT, &stacktraceHandler);
}
#endif
#else
// No implementation for systems with no stacktrace support.
......
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