Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751534AbbFXISv (ORCPT ); Wed, 24 Jun 2015 04:18:51 -0400 Received: from mailout1.w1.samsung.com ([210.118.77.11]:52609 "EHLO mailout1.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751070AbbFXISm (ORCPT ); Wed, 24 Jun 2015 04:18:42 -0400 X-AuditID: cbfec7f5-f794b6d000001495-17-558a67dfdd44 From: Pavel Fedin To: linux-kernel@vger.kernel.org Cc: "'Jonathan Corbet'" , "'Andy Lutomirski'" Subject: PING 2: [PATCH] Avoid conflict with host definitions when cross-compiling Date: Wed, 24 Jun 2015 11:18:39 +0300 Message-id: <00c601d0ae56$60339c80$209ad580$@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: AdCuVbL8UZ0TbDjNR62HCxfQfsQyfQ== Content-language: ru X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFjrFLMWRmVeSWpSXmKPExsVy+t/xq7r307tCDRpemlk8OdDOaHF51xw2 i9VrG1gdmD3uv/nL4rG4bzKrx+dNcgHMUVw2Kak5mWWpRfp2CVwZe641MxZs5614vb+TuYHx L1cXIyeHhICJxL6O48wQtpjEhXvr2boYuTiEBJYySjxbuoMdwvnOKPFlzmF2kCo2AXWJ018/ sIDYIgIKEpt7n7GC2MwC/hKzO4+D1QgLhEh8/NvPBGKzCKhKbOzpB6vnFbCUWHughQnCFpT4 MfkeC0SvlsT6nceZIGx5ic1r3kJdpCCx4+xrRohdehJff+xjg6gRkZj27x7zBEaBWUhGzUIy ahaSUbOQtCxgZFnFKJpamlxQnJSea6RXnJhbXJqXrpecn7uJERLCX3cwLj1mdYhRgINRiYd3 xYfOUCHWxLLiytxDjBIczEoivJuju0KFeFMSK6tSi/Lji0pzUosPMUpzsCiJ887c9T5ESCA9 sSQ1OzW1ILUIJsvEwSnVwGgTo3bwK/tTo85ZllfsTqka3eLL5k/ss7y9c9vbVaf4t0+c1Ljd VKCn7vLEkt/xs/+deHCgf46u16LXZ3ekl99IKtA+o3AzO6Np9wT2l9PKHp/JOzChuiaMh6vs 6YIWg4+zBO7MYuJu45htXMJvY5mhXt5g1vj8zbpNS7a62exKn13z8Z+p6k0lluKMREMt5qLi RAC63TMLXQIAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1912 Lines: 58 Hello! Guys, i've seen you reviewing some cross-compiling related changes by Paul Gortmaker. Can anybody help me with upstreaming this small thing? I don't know who to cc:, and definitely not Linus. LKML is vast, and the small patch seems to be lost. 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/