-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
191 lines (174 loc) · 4.45 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
option(
'inlining',
type : 'combo',
choices : [
'CBASE_FLATTEN_FUNCTIONS',
'CBASE_INLINE_FUNCTIONS',
'CBASE_NORMAL_INLINE_FUNCTIONS',
'CBASE_NEVER_INLINE_FUNCTIONS',
],
value : 'CBASE_FLATTEN_FUNCTIONS',
description : 'Level of inlining to apply to qualifying cbase functions'
)
option(
'dump_logging_errors_to_stderr',
type : 'boolean',
value : true,
description : 'Dump logging errors to STDERR'
)
option(
'default_logger',
type : 'combo',
choices : ['CBASE_LOG_STDERR', 'CBASE_LOG_CUSTOM'],
value : 'CBASE_LOG_CUSTOM',
description : 'Enable the default log and either output to STDERR or ' +
'enable customization'
)
option(
'default_logger_log_level',
type : 'combo',
choices : [
'CBASE_LOG_LEVEL_DEBUG',
'CBASE_LOG_LEVEL_INFO',
'CBASE_LOG_LEVEL_WARNING',
'CBASE_LOG_LEVEL_FAILURE',
'CBASE_LOG_LEVEL_ERROR',
'CBASE_LOG_LEVEL_CRITICAL',
'CBASE_LOG_LEVEL_FATAL',
'CBASE_LOG_LEVEL_RUNTIME'
],
value : 'CBASE_LOG_LEVEL_RUNTIME',
description : 'Hardcode the default logger\'s log level, or allow it to ' +
'be set at runtime'
)
option(
'internal_logger',
type : 'combo',
choices : [
'CBASE_LOG_DEFAULT',
'CBASE_LOG_STDERR',
'CBASE_LOG_CUSTOM'
],
value : 'CBASE_LOG_CUSTOM',
description : 'Enable the default log and either output to the default ' +
'log, output to STDERR or enable customization'
)
option(
'internal_logger_log_level',
type : 'combo',
choices : [
'CBASE_LOG_LEVEL_DEBUG',
'CBASE_LOG_LEVEL_INFO',
'CBASE_LOG_LEVEL_WARNING',
'CBASE_LOG_LEVEL_FAILURE',
'CBASE_LOG_LEVEL_ERROR',
'CBASE_LOG_LEVEL_CRITICAL',
'CBASE_LOG_LEVEL_FATAL',
'CBASE_LOG_LEVEL_RUNTIME'
],
value : 'CBASE_LOG_LEVEL_RUNTIME',
description : 'Hardcode the internal logger\'s log level, or allow it to ' +
'be set at runtime'
)
option(
'logger',
type : 'combo',
choices : [
'CBASE_LOG_DEFAULT',
'CBASE_LOG_STDERR',
'CBASE_LOG_CUSTOM'
],
value : 'CBASE_LOG_CUSTOM',
description : 'Enable the log and either output to the default log, ' +
'output to STDERR or enable customization'
)
option(
'logger_log_level',
type : 'combo',
choices : [
'CBASE_LOG_LEVEL_DEBUG',
'CBASE_LOG_LEVEL_INFO',
'CBASE_LOG_LEVEL_WARNING',
'CBASE_LOG_LEVEL_FAILURE',
'CBASE_LOG_LEVEL_ERROR',
'CBASE_LOG_LEVEL_CRITICAL',
'CBASE_LOG_LEVEL_FATAL',
'CBASE_LOG_LEVEL_RUNTIME'
],
value : 'CBASE_LOG_LEVEL_RUNTIME',
description : 'Hardcode the logger\'s log level, or allow it to be set at' +
'be set at runtime'
)
option(
'error_handling',
type : 'combo',
choices : [
'CBASE_ERROR_LEVELS_DEFAULT',
'CBASE_ERROR_LEVELS_CONFIGURABLE',
'CBASE_ERRORS_CONFIGURABLE'
],
value : 'CBASE_ERRORS_CONFIGURABLE',
description : 'Use default log levels for error handling, or allow them ' +
'to be configurable, or enable full configuration of error ' +
'handlers'
)
option(
'disable_index_bounds_checks',
type : 'boolean',
value : false,
description : 'Disables index argument bounds checking'
)
option(
'disable_length_bounds_checks',
type : 'boolean',
value : false,
description : 'Disables length argument bounds checking'
)
option(
'disable_offset_index_bounds_checks',
type : 'boolean',
value : false,
description : 'Disables offset index argument bounds checking'
)
option(
'disable_overlapping_memory_corruption_checks',
type : 'boolean',
value : false,
description : 'Disables overlapping memory corruption checks'
)
option(
'disable_pointer_argument_checks',
type : 'boolean',
value : false,
description : 'Disable pointer argument non-null checks'
)
option(
'disable_input_argument_pointer_checks',
type : 'boolean',
value : false,
description : 'Disable input pointer argument non-null checks'
)
option(
'disable_output_argument_pointer_checks',
type : 'boolean',
value : false,
description : 'Disable output pointer argument non-null checks'
)
option(
'disable_checked_math',
type : 'boolean',
value : false,
description : 'Disable overflow checking for add/sub/mul'
)
option(
'disable_checked_math_in_allocations',
type : 'boolean',
value : false,
description : 'Disable checked math in allocations'
)
option(
'disable_pointer_arithmetic_checks',
type : 'boolean',
value : false,
description : 'Disable pointer arithmetic checks'
)