From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23417 invoked by alias); 6 Nov 2002 21:38:43 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23410 invoked from network); 6 Nov 2002 21:38:40 -0000 Received: from unknown (HELO hell) (212.84.236.66) by sources.redhat.com with SMTP; 6 Nov 2002 21:38:40 -0000 Received: from js by hell with local (Exim 3.35 #1 (Debian)) id 189Xsc-0005Ee-00; Wed, 06 Nov 2002 22:38:30 +0100 Date: Wed, 06 Nov 2002 13:38:00 -0000 From: Johannes Stezenbach To: Michael Snyder , "Theodore A. Roth" Cc: gdb-patches@sources.redhat.com Subject: Re: [RFC] broken build using bison-1.75 Message-ID: <20021106213830.GA20109@convergence.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2002-11/txt/msg00130.txt.bz2 Hi, I just fumbled with this two days ago, but did not post to the list immediately because I'm not subscribed. The fix is similar to what the binutils people were doing. /bin/sh ../../gdb+dejagnu-5.3-branch-20021031/gdb/../ylwrap "bison -y" ../../gdb+dejagnu-5.3-branch-20021031/gdb/c-exp.y y.tab.c c-exp.tmp -- /home/js/MIPS/toolchain/mips-linux-gdb/gdb/../../gdb+dejagnu-5.3-branch-20021031/gdb/c-exp.y:248.5-251.3: type clash (`voidval' `') on default action /home/js/MIPS/toolchain/mips-linux-gdb/gdb/../../gdb+dejagnu-5.3-branch-20021031/gdb/c-exp.y:251.5: parse error, unexpected ":", expecting ";" or "|" make[1]: *** [c-exp.tab.c] Error 1 --- gdb+dejagnu-5.3-branch-20021031/gdb/p-exp.y.orig 2002-11-04 21:15:06.000000000 +0100 +++ gdb+dejagnu-5.3-branch-20021031/gdb/p-exp.y 2002-11-04 21:18:35.000000000 +0100 @@ -233,7 +233,8 @@ start : { current_type = NULL; search_field = 0; } - normal_start; + normal_start {} + ; normal_start : exp1 Regards, Johannes