-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathmeson.options
More file actions
73 lines (69 loc) · 1.64 KB
/
meson.options
File metadata and controls
73 lines (69 loc) · 1.64 KB
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
option(
'bindings',
type: 'array',
description: 'Bindings to include',
choices: ['serial', 'astlpc', 'i2c'],
value: ['serial', 'astlpc', 'i2c'],
)
option(
'control',
type: 'boolean',
value: true,
description: 'Include MCTP control protocol handler',
)
option(
'custom_alloc',
type: 'boolean',
value: false,
description: 'Use fixed application-provided allocators',
)
option(
'default_alloc',
type: 'feature',
description: 'Use libc malloc and free for heap memory',
)
option(
'default_clock_gettime',
type: 'boolean',
value: true,
description: 'Use clock_gettime() for time',
)
option(
'fileio',
type: 'feature',
description: 'Support interfaces based on file-descriptors',
)
option(
'nolog',
type: 'boolean',
value: false,
description: 'Don\'t include any logging functionality',
)
option('stdio', type: 'feature', description: 'Support logging to stdio')
option('syslog', type: 'feature', description: 'Support logging to syslog')
option('tests', type: 'feature', value: 'enabled', description: 'Build tests')
option(
'max_message_size',
type: 'integer',
value: 65536,
description: 'Maximum message size',
)
option(
'reassembly_contexts',
type: 'integer',
value: 16,
description: 'Number of concurrent reassembly contexts',
)
option(
'request_tags',
type: 'integer',
value: 16,
description: 'Number of outbound request tags',
)
option('i2c_mtu', type: 'integer', value: 64, description: 'I2C packet MTU')
option(
'i2c_neigh_count',
type: 'integer',
value: 4,
description: 'I2C neighbour table size',
)