Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752949AbbFQIfC (ORCPT ); Wed, 17 Jun 2015 04:35:02 -0400 Received: from mailout3.w1.samsung.com ([210.118.77.13]:44436 "EHLO mailout3.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750969AbbFQIew (ORCPT ); Wed, 17 Jun 2015 04:34:52 -0400 X-AuditID: cbfec7f4-f79c56d0000012ee-93-558131299aba From: Pavel Fedin To: linux-kernel@vger.kernel.org Cc: "'Yaakov Selkowitz'" Subject: PING: [PATCH] Avoid conflict with host definitions when cross-compiling Date: Wed, 17 Jun 2015 11:34:48 +0300 Message-id: <00f601d0a8d8$79242a80$6b6c7f80$@samsung.com> MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Mailer: Microsoft Outlook 14.0 Thread-index: AdCo2F0vPGHmILSFR02Uk9kS8YHDYg== Content-language: ru X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFtrLLMWRmVeSWpSXmKPExsVy+t/xq7qaho2hBgcnSVlc3jWHzeLF7yfs DkweF64cYPX4vEkugCmKyyYlNSezLLVI3y6BK+PSiqssBc28Fa/efWBqYLzP1cXIwSEhYCLx s5eni5ETyBSTuHBvPVsXIxeHkMBSRok336ayQDjfGSXaj55jAqliE1CXOP31AwuILSKgILG5 9xkriM0soCex6cVHZpChwgIBEj+31YCEWQRUJd4eu80MYvMKWEqsmP4CyhaU+DH5HgtEq5bE 5m1NUGPkJTavecsMcZCCxI6zrxlBRooAjf+yyxiiRERi2r97zBMYBWYhmTQLyaRZSCbNQtKy gJFlFaNoamlyQXFSeq6hXnFibnFpXrpecn7uJkZIoH7Zwbj4mNUhRgEORiUe3oYdDaFCrIll xZW5hxglOJiVRHj1NBtDhXhTEiurUovy44tKc1KLDzFKc7AoifPO3fU+REggPbEkNTs1tSC1 CCbLxMEp1cA4dXOWpZ/xB5O3D25qP2TozEzOfm9/mOeodepK/eAIzxvMeV8eL7qmoH3Xs9K1 n13zjufHxXN1Nq7aEN3Qtkx5kfqruO7rtsvqfNuajp2zDPR5ofRyn/7u/JbYusO9G4LOGewp qtfe1diqvOffDr6tCi9vNMq3qIjNOv9mCe8dO46J15ac052qxFKckWioxVxUnAgAuM+kcFAC AAA= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1859 Lines: 59 PING! 2 Yaakov: Hello! I remember you upstreamed this one: https://cygwin.com/ml/cygwin/2012-06/msg00221/0002-tools-include-use-stdint-types-for-user -space-bytesh.patch Who is the person to cc: ? Kind regards, Pavel Fedin Expert Engineer Samsung Electronics Research center Russia > -----Original Message----- > From: linux-kernel-owner@vger.kernel.org [mailto:linux-kernel-owner@vger.kernel.org] On > Behalf Of Pavel Fedin > Sent: Wednesday, June 03, 2015 11:25 AM > To: linux-kernel@vger.kernel.org > Subject: [PATCH] Avoid conflict with host definitions when cross-compiling > > Certain platforms (e. g. BSD-based ones) define some ELF constants according to host. > This patch fixes problems with cross-building Linux kernel on these platforms. > > Signed-off-by: Pavel Fedin > --- > scripts/mod/modpost.h | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h > index 168b43d..9f51365 100644 > --- a/scripts/mod/modpost.h > +++ b/scripts/mod/modpost.h > @@ -11,6 +11,12 @@ > > #include "elfconfig.h" > > +/* Cygwin's elf.h defines these according to host's word size */ > +#undef ELF_ST_BIND > +#undef ELF_ST_TYPE > +#undef ELF_R_SYM > +#undef ELF_R_TYPE > + > #if KERNEL_ELFCLASS == ELFCLASS32 > > #define Elf_Ehdr Elf32_Ehdr > -- > 1.9.5.msysgit.0 > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/