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 E557F45E6B; Tue, 10 Dec 2024 17:33:07 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D3E0F4042C; Tue, 10 Dec 2024 17:33:04 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 5EE35402E4 for ; Tue, 10 Dec 2024 17:33:02 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 9C30E2047222; Tue, 10 Dec 2024 08:33:01 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 9C30E2047222 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1733848381; bh=cJ2gF1Rc+H0DxNlVEFRue8rJL3V2HkTdguQRfRkuWlI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=h6YxF1bvYpcIFrSx3w+WkHAbvuw2p6kRoVpnheAjv/+ZSa2/F9FiFuk3Nt4u5/bY9 3haQJgxUw2xwdvZvWGkQ6mYc3N9CJ8MRJgFpED9aHqanJKf4j8ptQwd8JLzqJfOiba Lngd2etMhKzz5A4PaP7Rz4tGdEpxfpuUWlZefVfc= From: Andre Muezerie To: Cc: dev@dpdk.org, Andre Muezerie Subject: [PATCH 3/3] lib/stack: enable build with MSVC Date: Tue, 10 Dec 2024 08:32:34 -0800 Message-Id: <1733848355-19048-4-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1733848355-19048-1-git-send-email-andremue@linux.microsoft.com> References: <1733848355-19048-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 the code needed to build lib/stack have been addressed, it can be enabled so that it also gets built when using the MSVC compiler. Signed-off-by: Andre Muezerie --- lib/stack/meson.build | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/stack/meson.build b/lib/stack/meson.build index 7631a14784..18177a742f 100644 --- a/lib/stack/meson.build +++ b/lib/stack/meson.build @@ -1,12 +1,6 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2019 Intel Corporation -if is_ms_compiler - build = false - reason = 'not supported building with Visual Studio Toolset' - subdir_done() -endif - sources = files('rte_stack.c', 'rte_stack_std.c', 'rte_stack_lf.c') headers = files('rte_stack.h') # subheaders, not for direct inclusion by apps -- 2.47.0.vfs.0.3