From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id DAC14A055A; Thu, 27 Feb 2020 05:26:04 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 62F851BFD3; Thu, 27 Feb 2020 05:25:53 +0100 (CET) Received: from mail-lf1-f52.google.com (mail-lf1-f52.google.com [209.85.167.52]) by dpdk.org (Postfix) with ESMTP id 1C4B11BFB3 for ; Thu, 27 Feb 2020 05:25:51 +0100 (CET) Received: by mail-lf1-f52.google.com with SMTP id z9so1022158lfa.2 for ; Wed, 26 Feb 2020 20:25:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=yBqVZ8DtI8eVaDbhfrWnsFLO5z1alRz9iLMs1D8LYVA=; b=ivgdodGSXixJ+B7GbNWNKP7MgGOZRtxP5ebOziLO07ycvWUWsOrN6LSHu3L6k8gCGm LemFUFq3Wj8FzO0M6waljul/qwf+CkSGLZH91FnXZZ4KaS0s8TXDe6SJaRWHQNHxljrE y4cmD1B071r4sdYYKmoRJH59D3a6Bt+ZJb0vIwR6uSDLsanOKAChQMa3R34hn7SwsrNH lswftXQE5CR5uU9Og1tWl+Dmzwg1xe6JBpEHpnnRQ3Mlpl+P8DtGXX0wcIFWkolRmRb5 GjKdKMrGXC+U4roQr5SP5Qm5mzA9S6/eZrEd3mA3C9o+tU/W4HmNmfVdda8GiVHg2M7f M1oA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=yBqVZ8DtI8eVaDbhfrWnsFLO5z1alRz9iLMs1D8LYVA=; b=uE7LH7og5pfLiRy8Ne30KJDBOopwgEFrKwpuILoP1Q4vzOMjlqIft1la/lFBeB9rLN TEiBsMExRyd7k0LncNywxRXol22b3+DQmgWDVvSVKcAUrp+sEV6oy410nhD3+26SrQXf XFoXi6pY8lzLjz7oB64xvJIqBfuoWxoRKZXJMnOpbPu9b/UvrzCed9N4OT7ATaxUiodh OA0BEJOu+7pfQRYB7olsbp2kSbhho4nL7On9dVMQKwpZ+OfW1dmHazCNV+I6wxol8h4z 0XekZcvfYBTk5JmQDjU2YHctX+jo81evOem6PDJKTJarI8BgIRBFB3cXQAybJtRYq4JO Zi1g== X-Gm-Message-State: ANhLgQ1BTYfZGo2HP1uJqj7hXmRFGo29EMQupVIGenjAB/JYGk0ZJ4fG Kqamt1Gca20H2S9GIdmZakd0Pfhm+bQ= X-Google-Smtp-Source: ADFU+vsA77Pt3NAQZ18X7J2V1UNcjTqQAR/tEcH6omoepfDlJH/FwicNmkhXcib5Ukq2eA9ji7i4DA== X-Received: by 2002:a19:8b09:: with SMTP id n9mr1046033lfd.7.1582777550385; Wed, 26 Feb 2020 20:25:50 -0800 (PST) Received: from localhost.localdomain (broadband-37-110-65-23.ip.moscow.rt.ru. [37.110.65.23]) by smtp.googlemail.com with ESMTPSA id g21sm2224350ljj.53.2020.02.26.20.25.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 26 Feb 2020 20:25:49 -0800 (PST) From: Dmitry Kozlyuk To: dev@dpdk.org Cc: Dmitry Kozlyuk , Narcisa Ana Maria Vasile , William Tu , Harini Ramakrishnan , Omar Cardona , Pallavi Kadam , Ranjit Menon Date: Thu, 27 Feb 2020 07:25:32 +0300 Message-Id: <20200227042537.187459-3-dmitry.kozliuk@gmail.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200227042537.187459-1-dmitry.kozliuk@gmail.com> References: <20200218000229.86621-1-dmitry.kozliuk@gmail.com> <20200227042537.187459-1-dmitry.kozliuk@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v4 2/7] eal/windows: use lowercase filenames for system headers X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Mixed case in Windows header names causes errors when cross-compiling from Linux with case-sensitive filesystem using MinGW, because MinGW distribution provides all platform SDK headers in lowercase. The change does not affect Windows native builds on case-insensitive filesystems (NTFS default). Reported-by: Narcisa Ana Maria Vasile Reported-by: William Tu Signed-off-by: Dmitry Kozlyuk --- lib/librte_eal/windows/eal/include/pthread.h | 2 +- lib/librte_eal/windows/eal/include/rte_os.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/librte_eal/windows/eal/include/pthread.h b/lib/librte_eal/windows/eal/include/pthread.h index 4ac24de0a..b9dd18e56 100644 --- a/lib/librte_eal/windows/eal/include/pthread.h +++ b/lib/librte_eal/windows/eal/include/pthread.h @@ -14,7 +14,7 @@ extern "C" { #endif -#include +#include #define PTHREAD_BARRIER_SERIAL_THREAD TRUE diff --git a/lib/librte_eal/windows/eal/include/rte_os.h b/lib/librte_eal/windows/eal/include/rte_os.h index c76be1216..95a19b2d3 100644 --- a/lib/librte_eal/windows/eal/include/rte_os.h +++ b/lib/librte_eal/windows/eal/include/rte_os.h @@ -15,8 +15,8 @@ extern "C" { #endif -#include -#include +#include +#include #include #include -- 2.25.1