From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29133 invoked by alias); 1 Dec 2004 15:38:45 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 29102 invoked from network); 1 Dec 2004 15:38:38 -0000 Received: from unknown (HELO mprelay.uc.edu) (129.137.3.48) by sourceware.org with SMTP; 1 Dec 2004 15:38:38 -0000 Received: from [172.30.20.100] (zhivago.erc-wireless.uc.edu [172.30.20.100]) by mprelay.uc.edu (MOS 3.4.7-GR) with ESMTP id CCA06460; Wed, 1 Dec 2004 10:38:36 -0500 (EST) In-Reply-To: <200412010932.02561.bangerth@ices.utexas.edu> References: <200412010932.02561.bangerth@ices.utexas.edu> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <103296E5-43AF-11D9-A5AA-000A95D692F4@physics.uc.edu> Content-Transfer-Encoding: 7bit Cc: gcc@gcc.gnu.org, rth@gcc.gnu.org From: Andrew Pinski Subject: Re: Mainline bootstrap failure in toplev.c Date: Wed, 01 Dec 2004 15:38:00 -0000 To: Wolfgang Bangerth X-SW-Source: 2004-12/txt/msg00047.txt.bz2 On Dec 1, 2004, at 10:32 AM, Wolfgang Bangerth wrote: > > Hi all, > for several weeks now (I believe since my box has been upgraded to > Mandrake), mainline doesn't bootstrap any more for me. In stage1 > I get this: > That in itself strikes me as odd and wrong. In addition, the inline > keyword > in the first definition is expanded to > __inline__ __attribute__((always_inline)) > __attribute__((always_inline)) > which presumably is the cause of the problem. > > Is this a problem that others have seen before me? Yes this is caused by the newer linux kernel headers which define inline as "__inline__ __attribute__((always_inline))". So this is the normal linux kernel headers fucking up the build. This was reported back when the linux kernel headers changed and when the error was added to gcc. Thanks, Andrew Pinski