build: add option to override drivers install directory

Allow users and packagers to override the default dpdk/drivers
subdirectory where the PMDs get installed under $lib.

Signed-off-by: Luca Boccassi <bluca@debian.org>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Timothy Redaelli <tredaelli@redhat.com>
This commit is contained in:
Luca Boccassi 2018-10-02 17:20:46 +01:00 committed by Thomas Monjalon
parent 085766aa67
commit b63e5d4790
2 changed files with 7 additions and 2 deletions

View File

@ -22,8 +22,11 @@ dpdk_app_link_libraries = []
pver = meson.project_version().split('.')
major_version = '@0@.@1@'.format(pver.get(0), pver.get(1))
driver_install_path = join_paths(get_option('libdir'), 'dpdk',
'pmds-' + major_version)
pmd_subdir_opt = get_option('drivers_install_subdir')
if pmd_subdir_opt.contains('<VERSION>')
pmd_subdir_opt = major_version.join(pmd_subdir_opt.split('<VERSION>'))
endif
driver_install_path = join_paths(get_option('libdir'), pmd_subdir_opt)
eal_pmd_path = join_paths(get_option('prefix'), driver_install_path)
# configure the build, and make sure configs here and in config folder are

View File

@ -1,5 +1,7 @@
option('allow_invalid_socket_id', type: 'boolean', value: false,
description: 'allow out-of-range NUMA socket id\'s for platforms that don\'t report the value correctly')
option('drivers_install_subdir', type: 'string', value: 'dpdk/pmds-<VERSION>',
description: 'Subdirectory of libdir where to install PMDs. Defaults to using a versioned subdirectory.')
option('enable_driver_mlx_glue', type: 'boolean', value: false,
description: 'Enable glue library for Mellanox PMDs')
option('enable_kmods', type: 'boolean', value: true,