mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
27 lines
3.2 KiB
Plaintext
27 lines
3.2 KiB
Plaintext
option('tracy_enable', type : 'boolean', value : true, description : 'Enable profiling', yield: true)
|
|
option('on_demand', type : 'boolean', value : false, description : 'On-demand profiling')
|
|
option('callstack', type : 'boolean', value : false, description : 'Enfore callstack collection for tracy regions')
|
|
option('no_callstack', type : 'boolean', value : false, description : 'Disable all callstack related functionality')
|
|
option('no_callstack_inlines', type : 'boolean', value : false, description : 'Disables the inline functions in callstacks')
|
|
option('only_localhost', type : 'boolean', value : false, description : 'Only listen on the localhost interface')
|
|
option('no_broadcast', type : 'boolean', value : false, description : 'Disable client discovery by broadcast to local network')
|
|
option('only_ipv4', type : 'boolean', value : false, description : 'Tracy will only accept connections on IPv4 addresses (disable IPv6)')
|
|
option('no_code_transfer', type : 'boolean', value : false, description : 'Disable collection of source code')
|
|
option('no_context_switch', type : 'boolean', value : false, description : 'Disable capture of context switches')
|
|
option('no_exit', type : 'boolean', value : false, description : 'Client executable does not exit until all profile data is sent to server')
|
|
option('no_sampling', type : 'boolean', value : false, description : 'Disable call stack sampling')
|
|
option('no_verify', type : 'boolean', value : false, description : 'Disable zone validation for C API')
|
|
option('no_vsync_capture', type : 'boolean', value : false, description : 'Disable capture of hardware Vsync events')
|
|
option('no_frame_image', type : 'boolean', value : false, description : 'Disable the frame image support and its thread')
|
|
option('no_system_tracing', type : 'boolean', value : false, description : 'Disable systrace sampling')
|
|
option('patchable_nopsleds', type : 'boolean', value : false, description : 'Enable nopsleds for efficient patching by system-level tools (e.g. rr)')
|
|
option('timer_fallback', type : 'boolean', value : false, description : 'Use lower resolution timers')
|
|
option('libunwind_backtrace', type : 'boolean', value : false, description : 'Use libunwind backtracing where supported')
|
|
option('symbol_offline_resolve', type : 'boolean', value : false, description : 'Instead of full runtime symbol resolution, only resolve the image path and offset to enable offline symbol resolution')
|
|
option('libbacktrace_elf_dynload_support', type : 'boolean', value : false, description : 'Enable libbacktrace to support dynamically loaded elfs in symbol resolution resolution after the first symbol resolve operation')
|
|
option('delayed_init', type : 'boolean', value : false, description : 'Enable delayed initialization of the library (init on first call)')
|
|
option('manual_lifetime', type : 'boolean', value : false, description : 'Enable the manual lifetime management of the profile')
|
|
option('fibers', type : 'boolean', value : false, description : 'Enable fibers support')
|
|
option('no_crash_handler', type : 'boolean', value : false, description : 'Disable crash handling')
|
|
option('verbose', type : 'boolean', value : false, description : 'Enable verbose logging')
|
|
option('debuginfod', type : 'boolean', value : false, description : 'Enable debuginfod support') |