config: gather options for dlopen mlx dependency
[dpdk.git] / meson_options.txt
1 option('allow_invalid_socket_id', type: 'boolean', value: false,
2         description: 'allow out-of-range NUMA socket id\'s for platforms that don\'t report the value correctly')
3 option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-<VERSION>',
4         description: 'Subdirectory of libdir where to install PMDs. Defaults to using a versioned subdirectory.')
5 option('ibverbs_link', type: 'combo', choices : ['shared', 'dlopen'], value: 'shared',
6         description: 'Linkage method (shared/dlopen) for Mellanox PMDs with ibverbs dependencies.')
7 option('enable_kmods', type: 'boolean', value: true,
8         description: 'build kernel modules')
9 option('enable_docs', type: 'boolean', value: false,
10         description: 'build documentation')
11 option('examples', type: 'string', value: '',
12         description: 'Comma-separated list of examples to build by default')
13 option('include_subdir_arch', type: 'string', value: '',
14         description: 'subdirectory where to install arch-dependent headers')
15 option('kernel_dir', type: 'string', value: '',
16         description: 'path to the kernel for building kernel modules, they will be installed in $DEST_DIR/$kernel_dir/../extra/dpdk')
17 option('lib_musdk_dir', type: 'string', value: '',
18         description: 'path to the MUSDK library installation directory')
19 option('machine', type: 'string', value: 'native',
20         description: 'set the target machine type')
21 option('max_lcores', type: 'string', value: '128',
22         description: 'maximum number of cores/threads supported by EAL')
23 option('max_numa_nodes', type: 'string', value: '4',
24         description: 'maximum number of NUMA nodes supported by EAL')
25 option('per_library_versions', type: 'boolean', value: true,
26         description: 'true: each lib gets its own version number, false: DPDK version used for each lib')
27 option('use_hpet', type: 'boolean', value: false,
28         description: 'use HPET timer in EAL')
29 option('tests', type: 'boolean', value: true,
30         description: 'build unit tests')