forked from managarm/managarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
54 lines (45 loc) · 961 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
45
46
47
48
49
50
51
52
53
54
option('build_kernel',
type : 'boolean',
value : false
)
option('build_uefi',
type : 'boolean',
value : false
)
option('build_drivers',
type : 'boolean',
value : false
)
option('build_tools',
type : 'boolean',
value : false
)
option('provide_deps',
type : 'boolean',
value : false
)
option('kernel_ubsan',
type : 'boolean',
value : false,
description : 'enable ubsanitizer in the kernel'
)
option('kernel_kasan',
type : 'boolean',
value : false,
description : 'enable kasan in the kernel'
)
option('kernel_log_allocations',
type : 'boolean',
value : false,
description : 'enable memory allocation logging in kernel'
)
option('build_docs',
type : 'boolean',
value : false,
description : 'build only the mdbook and doxygen docs'
)
option('kernel_frame_pointers',
type : 'boolean',
value : false,
description : 'include frame pointers for stack traces'
)