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 E0B7245C9B; Tue, 12 Nov 2024 23:48:42 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B2AF74064C; Tue, 12 Nov 2024 23:48:42 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 38EE940265 for ; Tue, 12 Nov 2024 23:48:41 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 76C3320BEBC0; Tue, 12 Nov 2024 14:48:40 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 76C3320BEBC0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1731451720; bh=dw+TAAVyWkpyF/AMvKn+6TV58ZYMRaYcT0GyGUFPufA=; h=From:To:Cc:Subject:Date:From; b=ZKk6Zt2ILQb4lsRCXB9APrI8TjrqMf18f7hy2WaqWT5J05+2BFioqhG9YbIk2MdJ0 P9IOjZKi3nCb5duoLQsJamH6ma5GTvSSh9IRVFgz4347OzE8IgLJWY5aCksRQRWbkW px9gojnKawGQ2WJZ/tiAgrlIEGlOEcAZpiUxTqVA= From: Andre Muezerie To: Chengwen Feng Cc: dev@dpdk.org, Andre Muezerie Subject: [PATCH] argparse: enable code to be compiled with MSVC compiler Date: Tue, 12 Nov 2024 14:48:33 -0800 Message-Id: <1731451713-24543-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 argparser from getting compiled with MSVC were fixed, so now it should not be excluded from the compilation anymore. Signed-off-by: Andre Muezerie --- lib/argparse/meson.build | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/argparse/meson.build b/lib/argparse/meson.build index 8ab4c408ee..b6a08ca049 100644 --- a/lib/argparse/meson.build +++ b/lib/argparse/meson.build @@ -1,12 +1,6 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2024 HiSilicon Limited. -if is_ms_compiler - build = false - reason = 'not supported building with Visual Studio Toolset' - subdir_done() -endif - sources = files('rte_argparse.c') headers = files('rte_argparse.h') -- 2.34.1