Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <3C4C4E3F.A13D603F@windriver.com> Date: Mon, 21 Jan 2002 18:22:07 +0100 From: Benoit Perrin Organization: Wind River Systems X-Mailer: Mozilla 4.78 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Cygwin 1.3.8: bison failed with new dll version Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello, as a "me too" mail, I noted that bison core dumped with this yacc file: <---> %{ %} %token NUMBER %token WORD %type rule %type signed_number %% rule: WORD = { $$ = $1; } | /* empty */ = { $$ = NULL; }; signed_number: NUMBER = { $$ = $1; } | '-' NUMBER = { $$ = -$2; }; %% <---> bison failed only for a command line with the -d option like: bison -y -d .y The segmentation fault occured in a malloc, with a desired size of 8 in my case. Hope this helps. Benoit -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/