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 560E142946; Sat, 15 Apr 2023 03:17:08 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6FD0742D5C; Sat, 15 Apr 2023 03:16:04 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 0058C40697 for ; Sat, 15 Apr 2023 03:15:49 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id A82AC217A964; Fri, 14 Apr 2023 18:15:48 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com A82AC217A964 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1681521348; bh=j/R2GcLv3Ep66dFJSXu6E5VKx8FkosSeRbjgCV5EZD8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=koqcMXCt7FretutQ6ALKXNT0qFLPpM6YKIGWWvXSzbnUr4Nwfgay3nZytWvdh7I/J aK88/bH1ecjHVK0iZdorrSYEvN4CDuv+ITJ0Bsj0Bw9quNcJqtseFOK6LSEFeiTgWB 99c8azYee3MTLOBNLlYCgAXnQfiJgGPTpCERfzyw= From: Tyler Retzlaff To: dev@dpdk.org Cc: bruce.richardson@intel.com, david.marchand@redhat.com, thomas@monjalon.net, mb@smartsharesystems.com, konstantin.ananyev@huawei.com, Tyler Retzlaff Subject: [PATCH v6 15/15] eal: do not define typeof macro when building with MSVC Date: Fri, 14 Apr 2023 18:15:46 -0700 Message-Id: <1681521346-20356-16-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1681521346-20356-1-git-send-email-roretzla@linux.microsoft.com> References: <1680558751-17931-1-git-send-email-roretzla@linux.microsoft.com> <1681521346-20356-1-git-send-email-roretzla@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 When building with MSVC do not assume typeof is a macro and don't define a typeof macro that conflicts with C23 typeof keyword. Signed-off-by: Tyler Retzlaff --- lib/eal/include/rte_common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/eal/include/rte_common.h b/lib/eal/include/rte_common.h index 5417f68..fffb0fa 100644 --- a/lib/eal/include/rte_common.h +++ b/lib/eal/include/rte_common.h @@ -24,9 +24,11 @@ /* OS specific include */ #include +#ifndef RTE_TOOLCHAIN_MSVC #ifndef typeof #define typeof __typeof__ #endif +#endif #ifndef __cplusplus #ifndef asm -- 1.8.3.1