-
Notifications
You must be signed in to change notification settings - Fork 71
/
meson_options.txt
44 lines (37 loc) · 956 Bytes
/
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
option('dwarfgen',
type : 'boolean',
value : false,
description : 'enable dwarfgen compilation'
)
option('dwarfexample',
type : 'boolean',
value : false,
description : 'enable dwarf examples compilation'
)
option('doc',
type : 'boolean',
value : false,
description : 'build and install Doxygen documentation'
)
option('sanitize',
type : 'boolean',
value : false,
description : 'compile and link with -fsanitize options'
)
option('wall',
type : 'boolean',
value : false,
description : 'compile and link with compiler warning options'
)
option('decompression',
type : 'boolean',
value : true,
description : 'compile and link with zlib and zstd decompression libraries'
)
# Never use the following as it produces some printf from libdwarf
# Unless debugging libdwarf malloc use
option('libdwarfspecialmalloc',
type : 'boolean',
value : false,
description : 'Compile libdwarf (only) with special malloc code'
)