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 240F846282; Thu, 20 Feb 2025 21:32:35 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 38C3440648; Thu, 20 Feb 2025 21:32:14 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 3345F4026D for ; Thu, 20 Feb 2025 21:32:05 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id E222A204E591; Thu, 20 Feb 2025 12:32:03 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com E222A204E591 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1740083523; bh=yz60ntRP+z3fEpAzI9HiVdZEH5lU7X8s9ehHlgLkPsM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=M40ESwxlhnw+i1U+9rs3CX6b4DWlCBefP6u0s2C47ayvtTGEkkD769n+oLGv2ybxY 1fyjduOyr+qVq3TestJT1T/87SHBjjzhGLcvD9MlkPoMdRT+F0p3iZ+QlaFGspgrnG 2schK2RbVt1Zx+L0ujJWyk6Fl7PLwGIjDveHkAI4= From: Andre Muezerie To: andremue@linux.microsoft.com Cc: dev@dpdk.org Subject: [PATCH v3 6/6] mbuf: enable to be compiled with MSVC Date: Thu, 20 Feb 2025 12:31:48 -0800 Message-Id: <1740083508-6703-7-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1740083508-6703-1-git-send-email-andremue@linux.microsoft.com> References: <1739224265-4158-1-git-send-email-andremue@linux.microsoft.com> <1740083508-6703-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 Now that the issues preventing this lib from be compiled with MSVC are fixed it can be included in the compilation. The "net" library will automatically get compiled as well as it has a dependency on "mbuf" which will now get fulfilled. Signed-off-by: Andre Muezerie Acked-by: Bruce Richardson --- lib/mbuf/meson.build | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/mbuf/meson.build b/lib/mbuf/meson.build index 2cee9057a5..0435c5e628 100644 --- a/lib/mbuf/meson.build +++ b/lib/mbuf/meson.build @@ -1,12 +1,6 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -if is_ms_compiler - build = false - reason = 'not supported building with Visual Studio Toolset' - subdir_done() -endif - sources = files( 'rte_mbuf.c', 'rte_mbuf_ptype.c', -- 2.48.1.vfs.0.0