From owner-freebsd-tinderbox@FreeBSD.ORG Tue May 22 11:02:13 2012 Return-Path: Delivered-To: tinderbox@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7FA7106566C; Tue, 22 May 2012 11:02:13 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail09.syd.optusnet.com.au (mail09.syd.optusnet.com.au [211.29.132.190]) by mx1.freebsd.org (Postfix) with ESMTP id 21D8E8FC12; Tue, 22 May 2012 11:02:06 +0000 (UTC) Received: from c122-106-171-232.carlnfd1.nsw.optusnet.com.au (c122-106-171-232.carlnfd1.nsw.optusnet.com.au [122.106.171.232]) by mail09.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id q4MB1v5M003901 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 22 May 2012 21:01:58 +1000 Date: Tue, 22 May 2012 21:01:57 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: FreeBSD Tinderbox In-Reply-To: <201205220806.q4M86VeP090083@freebsd-current.sentex.ca> Message-ID: <20120522205302.G1845@besplex.bde.org> References: <201205220806.q4M86VeP090083@freebsd-current.sentex.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: current@FreeBSD.org, i386@FreeBSD.org Subject: Re: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-tinderbox@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Tinderbox reports, responses, and meta-comments" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2012 11:02:13 -0000 On Tue, 22 May 2012, FreeBSD Tinderbox wrote: > [...] > from /obj/i386.i386/src/tmp/usr/include/sys/_types.h:33, > from /obj/i386.i386/src/tmp/usr/include/stdio.h:41, > from /src/sbin/devd/parse.y:33: > /obj/i386.i386/src/tmp/usr/include/x86/_types.h:51: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'typedef' > /obj/i386.i386/src/tmp/usr/include/x86/_types.h:96: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__int_least8_t' > cc1: warnings being treated as errors > /src/sbin/devd/parse.y: In function 'yyparse': > /src/sbin/devd/parse.y:103: warning: implicit declaration of function 'add_attach' Another bug in the new yacc is that it uses hard-coded GNUisms like __attribute__(()) (maybe firm-coded by autoconfig) instead of hard-coded FreeBSDisms like __printflike(). But this is not the bug here. devd.h is just included in a wrong order (before its prerequisites) in parse.y. This worked accidentally because old yacc includes sufficient namespace pollution earlier. Bruce