[dpdk-dev] [PATCH v3] drivers/common: enable Windows common mlx5 compilation
Thomas Monjalon
thomas at monjalon.net
Mon Jan 11 21:52:48 CET 2021
03/01/2021 09:00, Tal Shnaiderman:
> From: Ophir Munk <ophirmu at nvidia.com>
>
> Prior to this commit meson did not progress beyond directory
> drivers/common for Windows compilations. This commit enables drivers
> compilation under this directory.
>
> Signed-off-by: Ophir Munk <ophirmu at nvidia.com>
> Signed-off-by: Tal Shnaiderman <talshn at nvidia.com>
> Acked-by: Matan Azrad <matan at nvidia.com>
> ---
> --- a/drivers/common/meson.build
> +++ b/drivers/common/meson.build
> @@ -1,10 +1,8 @@
> # SPDX-License-Identifier: BSD-3-Clause
> # Copyright(c) 2018 Cavium, Inc
>
> -if is_windows
> - subdir_done()
> +if not is_windows
> + std_deps = ['eal']
> + drivers = ['cpt', 'dpaax', 'iavf', 'mvep', 'octeontx', 'octeontx2', 'sfc_efx']
> endif
> -
> -std_deps = ['eal']
> -drivers = ['cpt', 'dpaax', 'iavf', 'mvep', 'octeontx', 'octeontx2', 'sfc_efx']
The change in drivers/common/meson.build is useless.
common/mlx5 is called directly from drivers/meson.build
And when one of these drivers will support Windows,
the Windows check will have to move in drivers file.
More information about the dev
mailing list