From: Ophir Munk Date: Tue, 12 Jan 2021 12:58:39 +0000 (+0200) Subject: common/mlx5: enable compilation on Windows X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=510893b3dc1b2defd389a558b5483784cf757ee6;p=dpdk.git common/mlx5: enable compilation on Windows Enable mlx5 common driver on Windows with clang compilation. Signed-off-by: Ophir Munk Signed-off-by: Tal Shnaiderman Acked-by: Matan Azrad --- diff --git a/drivers/common/mlx5/meson.build b/drivers/common/mlx5/meson.build index 26cee06a89..03e3e7b4a0 100644 --- a/drivers/common/mlx5/meson.build +++ b/drivers/common/mlx5/meson.build @@ -1,9 +1,9 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright 2019 Mellanox Technologies, Ltd -if not is_linux +if not (is_linux or (is_windows and is_ms_linker)) build = false - reason = 'only supported on Linux' + reason = 'only supported on Linux and Windows build with clang' subdir_done() endif