-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmeson_options.txt
More file actions
33 lines (32 loc) · 1.93 KB
/
meson_options.txt
File metadata and controls
33 lines (32 loc) · 1.93 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
# SPDX-License-Identifier: Marvell-MIT
# Copyright (c) 2023 Marvell.
option('disable_apps', type: 'string', value: '', description:
'Comma-separated list of apps to explicitly disable.')
option('disable_libs', type: 'string', value: '', description:
'Comma-separated list of optional libraries to explicitly disable. [NOTE: mandatory libs cannot be disabled]')
option('dma_stats', type: 'boolean', value: false, description:
'Enable DMA statistics of DAO.')
option('enable_apps', type: 'string', value: '', description:
'Comma-separated list of apps to build. If unspecified, build all apps.')
option('enable_host_build', type: 'boolean', value: false, description:
'Build DAO packages required for host only.')
option('enable_kmods', type: 'boolean', value: true, description:
'Build kernel modules.')
option('enable_libs', type: 'string', value: '', description:
'Comma-separated list of optional libraries to explicitly enable. [NOTE: mandatory libs are always enabled]')
option('kernel_dir', type: 'string', value: '', description:
'Path to the kernel for building kernel modules. Headers must be in $kernel_dir.')
option('platform', type: 'string', value: 'native', description:
'Platform to build.')
option('prefer_static_build', type: 'boolean', value: false, description:
'Build only static DAO libraries and link external dependencies statically.')
option('virtio_debug', type: 'boolean', value: false, description:
'Enable virtio debug.')
option('virtio_blk_debug', type: 'boolean', value: false, description:
'Enable virtio blk debug.')
option('rdma_build', type: 'boolean', value: true, description:
'RDMA kmod build')
option('rdma_debug', type: 'boolean', value: false, description:
'Enable RDMA debug logs (defines RDMA_DEBUG).')
option('build_host_dir', type: 'string', value: '', description:
'Build host directory path for rdma-core prefix installation.')