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 8E02845CC8; Wed, 13 Nov 2024 02:24:46 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 264CF40290; Wed, 13 Nov 2024 02:24:46 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id C75A340265 for ; Wed, 13 Nov 2024 02:24:43 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id C818920BEBC4; Tue, 12 Nov 2024 17:24:42 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com C818920BEBC4 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1731461082; bh=jNTsghQhxXjvO6el+Ie/XR9pLDr5ERdkEX9fXxPEufE=; h=From:To:Cc:Subject:Date:From; b=PJgVFGSxZaaxQyq7j6qFWWsu/ogxyeuC7CmwfPJ09b47GeFDEEOyPtK3YXQxeYDUM reGEicmk3TeIzUXorHMHx+FBhJf70BLC9nbV5BPAqT+GIspy9njd3Lc04YlCmjBZvl 01wzR4tPjgum5+5GXEa+tVSyq7ZYwXNKNpHHTdrI= From: Andre Muezerie To: Andrew Rybchenko , =?UTF-8?q?Morten=20Br=C3=B8rup?= Cc: dev@dpdk.org, Andre Muezerie Subject: [PATCH] mempool: enable code to be compiled with MSVC compiler Date: Tue, 12 Nov 2024 17:24:33 -0800 Message-Id: <1731461073-12789-1-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 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 The issues that were preventing mempool from getting compiled with MSVC were fixed, so now it should not be excluded from the build anymore. Signed-off-by: Andre Muezerie --- lib/mempool/meson.build | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/mempool/meson.build b/lib/mempool/meson.build index acce66cb97..8099a56466 100644 --- a/lib/mempool/meson.build +++ b/lib/mempool/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 - extra_flags = [] foreach flag: extra_flags -- 2.34.1