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 7038446260; Wed, 19 Feb 2025 02:40:37 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D3B1B40B9A; Wed, 19 Feb 2025 02:40:16 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 5808640041 for ; Wed, 19 Feb 2025 02:40:09 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 90DF120376F4; Tue, 18 Feb 2025 17:40:07 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 90DF120376F4 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1739929207; bh=yz60ntRP+z3fEpAzI9HiVdZEH5lU7X8s9ehHlgLkPsM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=H/LQj2QgsB0gsnLLsprF7VYLavAmqZUUiOyfp46jhbn0QAZ00xkxoeRgGQfxWct6T lX0yNRrojNnIbSZ+h8JB+tCIeRr380DK0mJwW7It+e1wzo4tF7LeQNju1v9l4BLwzF Lg9GPgisSSpo84YRra19ieO6Gx6ORcCXvIkCjdhw= From: Andre Muezerie To: andremue@linux.microsoft.com Cc: dev@dpdk.org Subject: [PATCH v2 5/5] mbuf: enable to be compiled with MSVC Date: Tue, 18 Feb 2025 17:39:58 -0800 Message-Id: <1739929198-28432-6-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1739929198-28432-1-git-send-email-andremue@linux.microsoft.com> References: <1739224265-4158-1-git-send-email-andremue@linux.microsoft.com> <1739929198-28432-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