lib: remove librte_ prefix from directory names
[dpdk.git] / meson_options.txt
1 # Please keep these options sorted alphabetically.
2
3 option('check_includes', type: 'boolean', value: false, description:
4        'build "chkincs" to verify each header file can compile alone')
5 option('developer_mode', type: 'feature', description:
6        'turn on additional build checks relevant for DPDK developers')
7 option('disable_drivers', type: 'string', value: '', description:
8        'Comma-separated list of drivers to explicitly disable.')
9 option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-<VERSION>', description:
10        'Subdirectory of libdir where to install PMDs. Defaults to using a versioned subdirectory.')
11 option('enable_docs', type: 'boolean', value: false, description:
12        'build documentation')
13 option('enable_drivers', type: 'string', value: '', description:
14        'Comma-separated list of drivers to build. If unspecified, build all drivers.')
15 option('enable_driver_sdk', type: 'boolean', value: false, description:
16        'Install headers to build drivers.')
17 option('enable_kmods', type: 'boolean', value: false, description:
18        'build kernel modules')
19 option('examples', type: 'string', value: '', description:
20        'Comma-separated list of examples to build by default')
21 option('flexran_sdk', type: 'string', value: '', description:
22        'Path to FlexRAN SDK optional Libraries for BBDEV device')
23 option('ibverbs_link', type: 'combo', choices : ['static', 'shared', 'dlopen'], value: 'shared', description:
24        'Linkage method (static/shared/dlopen) for Mellanox PMDs with ibverbs dependencies.')
25 option('include_subdir_arch', type: 'string', value: '', description:
26        'subdirectory where to install arch-dependent headers')
27 option('kernel_dir', type: 'string', value: '', description:
28        'Path to the kernel for building kernel modules. Headers must be in $kernel_dir or $kernel_dir/build. Modules will be installed in /lib/modules.')
29 option('machine', type: 'string', value: 'native', description:
30        'set the target machine type or "generic", a build usable on all machines of the build machine architecture or "native", which lets the compiler pick the architecture of the build machine.')
31 option('max_ethports', type: 'integer', value: 32, description:
32        'maximum number of Ethernet devices')
33 option('max_lcores', type: 'integer', value: 128, description:
34        'maximum number of cores/threads supported by EAL')
35 option('max_numa_nodes', type: 'integer', value: 32, description:
36        'maximum number of NUMA nodes supported by EAL')
37 option('platform', type: 'string', value: '', description:
38        'use configuration for a particular platform (such as a SoC).')
39 option('enable_trace_fp', type: 'boolean', value: false, description:
40        'enable fast path trace points.')
41 option('tests', type: 'boolean', value: true, description:
42        'build unit tests')
43 option('use_hpet', type: 'boolean', value: false, description:
44        'use HPET timer in EAL')