From b08912b009f15c0795fe71f00570b6afed0a5038 Mon Sep 17 00:00:00 2001 From: Nick Wessing Date: Thu, 3 Nov 2022 10:27:36 -0500 Subject: [PATCH] Fix compilation error on linux when TRACY_NO_CRASH_HANDLER defined --- public/client/TracyProfiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/client/TracyProfiler.cpp b/public/client/TracyProfiler.cpp index ea168e4f..d09c2523 100644 --- a/public/client/TracyProfiler.cpp +++ b/public/client/TracyProfiler.cpp @@ -854,7 +854,7 @@ std::atomic s_symbolThreadGone { false }; static Thread* s_sysTraceThread = nullptr; #endif -#if defined __linux__ && !defined TRACY_NO_CRASH_HANDLER +#if defined __linux__ # ifndef TRACY_CRASH_SIGNAL # define TRACY_CRASH_SIGNAL SIGPWR # endif