1# Please keep these options sorted alphabetically. 2 3option('disable_drivers', type: 'string', value: '', 4 description: 'Comma-separated list of drivers to explicitly disable.') 5option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-<VERSION>', 6 description: 'Subdirectory of libdir where to install PMDs. Defaults to using a versioned subdirectory.') 7option('enable_docs', type: 'boolean', value: false, 8 description: 'build documentation') 9option('enable_kmods', type: 'boolean', value: false, 10 description: 'build kernel modules') 11option('examples', type: 'string', value: '', 12 description: 'Comma-separated list of examples to build by default') 13option('flexran_sdk', type: 'string', value: '', 14 description: 'Path to FlexRAN SDK optional Libraries for BBDEV device') 15option('ibverbs_link', type: 'combo', choices : ['static', 'shared', 'dlopen'], value: 'shared', 16 description: 'Linkage method (static/shared/dlopen) for Mellanox PMDs with ibverbs dependencies.') 17option('include_subdir_arch', type: 'string', value: '', 18 description: 'subdirectory where to install arch-dependent headers') 19option('kernel_dir', type: 'string', value: '', 20 description: 'Path to the kernel for building kernel modules. Headers must be in $kernel_dir/build. Modules will be installed in $DEST_DIR/$kernel_dir/extra/dpdk.') 21option('lib_musdk_dir', type: 'string', value: '', 22 description: 'path to the MUSDK library installation directory') 23option('machine', type: 'string', value: 'native', 24 description: 'set the target machine type') 25option('max_ethports', type: 'integer', value: 32, 26 description: 'maximum number of Ethernet devices') 27option('max_lcores', type: 'integer', value: 128, 28 description: 'maximum number of cores/threads supported by EAL') 29option('max_numa_nodes', type: 'integer', value: 4, 30 description: 'maximum number of NUMA nodes supported by EAL') 31option('enable_trace_fp', type: 'boolean', value: false, 32 description: 'enable fast path trace points.') 33option('tests', type: 'boolean', value: true, 34 description: 'build unit tests') 35option('use_hpet', type: 'boolean', value: false, 36 description: 'use HPET timer in EAL') 37