eal/memory: fix unused SIGBUS handler
[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('cpu_instruction_set', type: 'string', value: 'auto',
6         description: 'Set the target machine ISA (instruction set architecture). Will be set according to the platform option by default.')
7 option('developer_mode', type: 'feature', description:
8        'turn on additional build checks relevant for DPDK developers')
9 option('disable_drivers', type: 'string', value: '', description:
10        'Comma-separated list of drivers to explicitly disable.')
11 option('disable_libs', type: 'string', value: '', description:
12        'Comma-separated list of libraries to explicitly disable. [NOTE: not all libs can be disabled]')
13 option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-<VERSION>', description:
14        'Subdirectory of libdir where to install PMDs. Defaults to using a versioned subdirectory.')
15 option('enable_docs', type: 'boolean', value: false, description:
16        'build documentation')
17 option('enable_drivers', type: 'string', value: '', description:
18        'Comma-separated list of drivers to build. If unspecified, build all drivers.')
19 option('enable_driver_sdk', type: 'boolean', value: false, description:
20        'Install headers to build drivers.')
21 option('enable_kmods', type: 'boolean', value: false, description:
22        'build kernel modules')
23 option('examples', type: 'string', value: '', description:
24        'Comma-separated list of examples to build by default')
25 option('flexran_sdk', type: 'string', value: '', description:
26        'Path to FlexRAN SDK optional Libraries for BBDEV device')
27 option('ibverbs_link', type: 'combo', choices : ['static', 'shared', 'dlopen'], value: 'shared', description:
28        'Linkage method (static/shared/dlopen) for Mellanox PMDs with ibverbs dependencies.')
29 option('include_subdir_arch', type: 'string', value: '', description:
30        'subdirectory where to install arch-dependent headers')
31 option('kernel_dir', type: 'string', value: '', description:
32        '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.')
33 option('machine', type: 'string', value: 'auto', description:
34        'Alias of cpu_instruction_set.')
35 option('max_ethports', type: 'integer', value: 32, description:
36        'maximum number of Ethernet devices')
37 option('max_lcores', type: 'string', value: 'default', description:
38        'Set maximum number of cores/threads supported by EAL; "default" is different per-arch, "detect" detects the number of cores on the build machine.')
39 option('max_numa_nodes', type: 'string', value: 'default', description:
40        'Set the highest NUMA node supported by EAL; "default" is different per-arch, "detect" detects the highest NUMA node on the build machine.')
41 option('platform', type: 'string', value: 'native', description:
42        'Platform to build, either "native", "generic" or a SoC. Please refer to the Linux build guide for more information.')
43 option('enable_trace_fp', type: 'boolean', value: false, description:
44        'enable fast path trace points.')
45 option('tests', type: 'boolean', value: true, description:
46        'build unit tests')
47 option('use_hpet', type: 'boolean', value: false, description:
48        'use HPET timer in EAL')