-
Notifications
You must be signed in to change notification settings - Fork 13
/
meson_options.txt
89 lines (75 loc) · 1.77 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
option('generic_library',
type: 'feature',
value: 'auto',
description: 'Build libunwind-generic library'
)
option('coredump_library',
type: 'feature',
value: 'auto',
description: 'Build libunwind-coredump library'
)
option('ptrace_library',
type: 'feature',
value: 'auto',
description: 'Build libunwind-ptrace library'
)
option('setjmp_library',
type: 'feature',
value: 'auto',
description: 'Build libunwind-setjmp library'
)
option('weak_backtrace',
type: 'boolean',
value: true,
description: 'Provide the weak \'backtrace\' symbol'
)
option('unwind_header',
type: 'boolean',
value: true,
description: 'Export the \'unwind.h\' header'
)
option('unwind_debug',
type: 'feature',
value: 'auto',
description: 'Turn on debug support (slows down execution)'
)
option('cxx_exceptions',
type: 'feature',
value: 'auto',
description: 'Use libunwind to handle C++ exceptions'
)
option('debug_frame',
type: 'feature',
value: 'auto',
description: 'Load the ".debug_frame" section if available'
)
option('block_signals',
type: 'boolean',
value: true,
description: 'Block signals before performing mutex operations'
)
option('conservative_checks',
type: 'boolean',
value: true,
description: 'Validate all memory addresses before use'
)
option('msabi_support',
type: 'boolean',
value: true,
description: 'Support for Microsoft ABI extensions'
)
option('minidebuginfo',
type: 'feature',
value: 'auto',
description: 'Support for LZMA-compressed symbol tables'
)
option('zlibdebuginfo',
type: 'feature',
value: 'auto',
description: 'Support for ZLIB-compressed symbol tables'
)
option('per_thread_cache',
type: 'boolean',
value: false,
description: 'Support for UNW_CACHE_PER_THREAD (which imposes a high TLS memory usage)'
)