diff --git a/CMakeLists.txt b/CMakeLists.txt index 89fd96c8..6ae4550f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -137,7 +137,7 @@ set_option(TRACY_LIBUNWIND_BACKTRACE "Use libunwind backtracing where supported" set_option(TRACY_SYMBOL_OFFLINE_RESOLVE "Instead of full runtime symbol resolution, only resolve the image path and offset to enable offline symbol resolution" OFF TracyClient) set_option(TRACY_LIBBACKTRACE_ELF_DYNLOAD_SUPPORT "Enable libbacktrace to support dynamically loaded elfs in symbol resolution resolution after the first symbol resolve operation" OFF TracyClient) set_option(TRACY_DEBUGINFOD "Enable debuginfod support" OFF TracyClient) -set_option(TRACY_IGNORE_MEMORY_FAULTS "Ignore instrumentation errors from memory free events that do not have a matching allocation" OFF TracyClient) +set_option(TRACY_IGNORE_MEMORY_FAULTS "Ignore instrumentation errors from memory free events that do not have a matching allocation, or from repeated allocations of the same address" OFF TracyClient) set_option(TRACY_OPENGL_AUTO_CALIBRATION "Periodically recalibrate OpenGL GPU/CPU clock drift (forces a CPU/GPU sync each time)" OFF TracyClient) # advanced diff --git a/meson.options b/meson.options index 99cc7af6..54f788f9 100644 --- a/meson.options +++ b/meson.options @@ -29,5 +29,5 @@ option('no_crash_handler', type : 'boolean', value : false, description : 'Disab option('verbose', type : 'boolean', value : false, description : 'Enable verbose logging') option('no_internal_message', type : 'boolean', value : false, description : 'Prevent the profiler from logging messages') option('debuginfod', type : 'boolean', value : false, description : 'Enable debuginfod support') -option('ignore_memory_faults', type : 'boolean', value : false, description : 'Ignore instrumentation errors from memory free events that do not have a matching allocation') +option('ignore_memory_faults', type : 'boolean', value : false, description : 'Ignore instrumentation errors from memory free events that do not have a matching allocation, or from repeated allocations of the same address') option('opengl_auto_calibration', type : 'boolean', value : false, description : 'Periodically recalibrate OpenGL GPU/CPU clock drift (forces a CPU/GPU sync each time)')