From patchwork Thu Feb 6 06:44:23 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitry Kozlyuk X-Patchwork-Id: 65611 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 60417A04FA; Thu, 6 Feb 2020 07:45:26 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4D6041C0BC; Thu, 6 Feb 2020 07:44:46 +0100 (CET) Received: from mail-lj1-f194.google.com (mail-lj1-f194.google.com [209.85.208.194]) by dpdk.org (Postfix) with ESMTP id 7F5031C014 for ; Thu, 6 Feb 2020 07:44:42 +0100 (CET) Received: by mail-lj1-f194.google.com with SMTP id v17so4876839ljg.4 for ; Wed, 05 Feb 2020 22:44:42 -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=12qzM0p7J2BqrZkWvnTWWGpRayFF6JDE0R6z409yAyY=; b=Jadlo59nS/J8aRZ+7DI/hRqLNtiNvIhgMs0VBEg1evOCkYeN88ZHsL+uhn6Y2uKlg1 W2/YTC+73hp9cJPb10XVJ+J+gC9nI5M7cWCHhSINwR1xDsWS9y51e4PoPgw17LZ//ghi XorkSPiOF/2F4tXZe2zyOdGxmmVO/l5yM1gwrdiuUzcyjidMUgmxAecrEjImka7yifMq MXQcsnWl+oT83wzcOXrrHmM9qHvPph++h3Nu3nBrO8WCJ2eoLiTu0muK9L3Gn4z2FAvt Oes0CmixrZYF1daAl2A+THKq7aksn0vCftbaxUCEUPhxQUtSKOH76+kRykxpVlDALh+A zdQg== 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=12qzM0p7J2BqrZkWvnTWWGpRayFF6JDE0R6z409yAyY=; b=MmLGsyLXOMhPeUXgXVWF3Vt5c91DmOvSBg4BdTwUFp6DMgDhrcRRgNezguZQFjo+q1 Dn+96adcBd9/k9WBuwxnjxcs+uh+0GMS5jNzpGBePJtW5rrsmmqt/RTrACflIkvXtGz+ vBU2bGrX22+U2e59vNijwmWfKfJ9KZJohu+ygb3cu2uGHf2iyMOfheeOL2V6zFdo0QnL dY2Tzwf0/V7lBvpeJY/9VJFFAPbf9Og/+4cMHUmua7WBRgPMIOhFh0fUfiES64CNhYZW 9FWm4nzVA0d9YdZLcAskSlEow6nYFObi/ZjKjd+Foi6cg9VR5I92M5shGrvWwfY1sVlZ JRkg== X-Gm-Message-State: APjAAAWockKMiIgnpSuP7ft1vH8SDC0fYMlIvE+C2icPbusGm3mBRr/m 9/dTopLHhQySixuNz/R0IrhM1D8aOyk= X-Google-Smtp-Source: APXvYqwZOsB+vlkQ6aU7plBgVOTIQPPM64y3LZW3SX+vJPuNNQKUKjjw+/yf+OZvqxcS5Kp9kcXe4A== X-Received: by 2002:a2e:8651:: with SMTP id i17mr1088524ljj.121.1580971481874; Wed, 05 Feb 2020 22:44:41 -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 o19sm939669lji.54.2020.02.05.22.44.41 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 05 Feb 2020 22:44:41 -0800 (PST) From: Dmitry Kozlyuk To: dev@dpdk.org Cc: Dmitry Kozlyuk , Narcisa Ana Maria Vasile , Harini Ramakrishnan , Omar Cardona , Pallavi Kadam , Ranjit Menon Date: Thu, 6 Feb 2020 09:44:23 +0300 Message-Id: <20200206064426.45697-5-dmitry.kozliuk@gmail.com> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200206064426.45697-1-dmitry.kozliuk@gmail.com> References: <20200206064426.45697-1-dmitry.kozliuk@gmail.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 4/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 Signed-off-by: Dmitry Kozlyuk --- lib/librte_eal/windows/eal/include/rte_os.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_eal/windows/eal/include/rte_os.h b/lib/librte_eal/windows/eal/include/rte_os.h index fdeae0c8f..79d41f6a9 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 #define strerror_r(a, b, c) strerror_s(b, c, a)