From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0E12945DE3; Fri, 6 Dec 2024 20:30:29 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 92CA240E34; Fri, 6 Dec 2024 20:30:26 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id E006D40A8A for ; Fri, 6 Dec 2024 20:30:22 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id F31DB20ACD7C; Fri, 6 Dec 2024 11:30:21 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com F31DB20ACD7C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1733513421; bh=faLIz44STc02D+Eu/n/XVLe/KemybAufv/TP2nLbNN0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Z2GNUEev3Xz3IShAewzHwgeClvVVNvDmIjfi+QzlKarIPKsuZrcQuOAWWTpdiVGTq E52w+B+yc+nFBB8pQLWIYwsc8N7gIEF88ROcBWr9GQ3VXn4rR0wlP8p7KlPm3fFKDY +BJ3MUjNEr3SQe/8WFu+nl1flWn15rXtrbr+hRVA= From: Andre Muezerie To: Chengwen Feng , Kevin Laatz , Bruce Richardson Cc: dev@dpdk.org, Andre Muezerie Subject: [PATCH 2/2] lib/dmadev: enable dmadev lib to be compiled with MSVC Date: Fri, 6 Dec 2024 11:27:53 -0800 Message-Id: <1733513273-25550-3-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1733513273-25550-1-git-send-email-andremue@linux.microsoft.com> References: <1733513273-25550-1-git-send-email-andremue@linux.microsoft.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org With the outstanding issues preventing dmadev from being compiled with MSVC being fixed by this series, the lib can be enabled to be compiled with MSVC. Signed-off-by: Andre Muezerie --- lib/dmadev/meson.build | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/dmadev/meson.build b/lib/dmadev/meson.build index e66dcb66b0..62b0650b9b 100644 --- a/lib/dmadev/meson.build +++ b/lib/dmadev/meson.build @@ -1,12 +1,6 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2021 HiSilicon Limited. -if is_ms_compiler - build = false - reason = 'not supported building with Visual Studio Toolset' - subdir_done() -endif - sources = files('rte_dmadev.c', 'rte_dmadev_trace_points.c') headers = files('rte_dmadev.h') indirect_headers += files('rte_dmadev_core.h', 'rte_dmadev_trace_fp.h') -- 2.47.0.vfs.0.3