-
-
Notifications
You must be signed in to change notification settings - Fork 438
/
meson_options.txt
87 lines (84 loc) · 1.62 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
option(
'minimal',
type: 'feature',
value: 'disabled',
description: 'Enable minimal mode (forces ZYDIS_DECODER_MODE_MINIMAL runtime option)',
)
option(
'decoder',
type: 'feature',
value: 'auto',
description: 'Enable instruction decoding functionality',
)
option(
'encoder',
type: 'feature',
value: 'auto',
description: 'Enable instruction encoding functionality',
)
option(
'formatter',
type: 'feature',
value: 'auto',
description: 'Enable instruction formatting functionality',
)
option(
'avx512',
type: 'feature',
value: 'auto',
description: 'Enable support for AVX-512 instructions',
)
option(
'knc',
type: 'feature',
value: 'auto',
description: 'Enable support for KNC instructions',
)
option(
'segment',
type: 'feature',
value: 'auto',
description: 'Enable instruction segment API',
)
option(
'examples',
type: 'feature',
value: 'auto',
description: 'Build examples',
)
option(
'tools',
type: 'feature',
value: 'auto',
description: 'Build tools',
)
option(
'man',
type: 'feature',
value: 'auto',
description: 'Build manpages for the tools (requires Ronn-NG)',
)
option(
'doc',
type: 'feature',
value: 'auto',
description: 'Build doxygen documentation (requires Doxygen)',
)
option(
'tests',
type: 'feature',
value: 'auto',
description: 'Build tests',
)
option(
'nolibc',
type: 'boolean',
value: false,
description: 'Do not use any C standard library functions (for exotic build-envs like kernel drivers)',
)
option(
'llvm-fuzz',
type: 'boolean',
value: false,
description: 'Enables LLVM libfuzzer mode and reduces prints in ZydisFuzzIn',
)