-
Notifications
You must be signed in to change notification settings - Fork 17
/
meson_options.txt
108 lines (91 loc) · 2.11 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
option('embedder_string',
type: 'string',
value: '',
description: 'Embedder string'
)
option('debugging_features',
type: 'feature',
value: 'disabled',
description: 'Enable debugging features'
)
option('checks',
type: 'feature',
value: 'disabled',
description: 'Enable checks'
)
option('slow_dchecks',
type: 'feature',
value: 'disabled',
description: 'Enable slow dchecks'
)
option('advanced_bigint_algorithms',
type: 'feature',
value: 'auto',
description: 'Enable advanced BigInt algorithms, costing about 10-30 KB binary size depending on platform'
)
option('snapshot_compression',
type: 'feature',
value: 'auto',
description: 'Enable snapshot compression'
)
option('pointer_compression',
type: 'feature',
value: 'auto',
description: 'Enable pointer compression'
)
option('pointer_compression_shared_cage',
type: 'feature',
value: 'auto',
description: 'Compress pointers in shared cage'
)
option('31bit_smis_on_64bit_arch',
type: 'feature',
value: 'disabled',
description: 'Use 31-bit SMIs on 64-bit architectures'
)
option('shared_ro_heap',
type: 'feature',
value: 'auto',
description: 'Enable sharing read-only space across isolates'
)
option('cppgc_caged_heap',
type: 'feature',
value: 'auto',
description: 'Enable heap reservation of size 4GB'
)
option('cppgc_young_generation',
type: 'feature',
value: 'auto',
description: 'Enable young generation in cppgc'
)
option('cppgc_pointer_compression',
type: 'feature',
value: 'auto',
description: 'Enable pointer compression in cppgc'
)
option('i18n',
type: 'feature',
value: 'disabled',
description: 'Internationalization support'
)
option('maglev',
type: 'feature',
value: 'disabled',
description: 'Maglev mid-tier optimizing compiler'
)
option('wasm',
type: 'feature',
value: 'auto',
description: 'WebAssembly'
)
option('system_instrumentation',
type: 'feature',
value: 'disabled',
description: 'Enable OS-dependent event tracing'
)
option('arm_fpu',
type: 'combo',
choices: ['auto', 'none-or-vfpv2', 'vfpv3-d16', 'vfpv3', 'neon'],
value: 'auto',
description: 'ARM FPU flavor'
)