From 2162e160ddadb04c4b59ea5bbcd179ebd8ba872b Mon Sep 17 00:00:00 2001 From: bookmist Date: Mon, 1 Jun 2026 19:55:26 +0300 Subject: [PATCH] external/tracy: don't stop tracing on first AV or signal Disable tracy crash handler. AV can be part of normal work of Vita3k --- external/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index a7e28f238..f9b99b68d 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -426,6 +426,9 @@ if(NOT (CMAKE_BUILD_TYPE STREQUAL "Release")) # Disable Tracy automated data collection in order to prevent Tracy-related code from being profiled target_compile_definitions(tracy PUBLIC TRACY_NO_SYSTEM_TRACING) + # Disable Tracy crash handler. Don't stop tracing on first AV. + target_compile_definitions(tracy PUBLIC TRACY_NO_CRASH_HANDLER) + # Defining TRACY_ENABLE for both compiling Tracy and compiling the project that links # against it is needed for Tracy to work #