external/tracy: don't stop tracing on first AV or signal

Disable tracy crash handler. AV can be part of normal work of Vita3k
This commit is contained in:
bookmist
2026-06-01 19:55:26 +03:00
parent d8db20a3d3
commit 2162e160dd
+3
View File
@@ -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 # Disable Tracy automated data collection in order to prevent Tracy-related code from being profiled
target_compile_definitions(tracy PUBLIC TRACY_NO_SYSTEM_TRACING) 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 # Defining TRACY_ENABLE for both compiling Tracy and compiling the project that links
# against it is needed for Tracy to work # against it is needed for Tracy to work
# #