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