Re: cygwin 1.3.8: bison failed with new dll version

2002-01-21 Thread Christopher Faylor
On Mon, Jan 21, 2002 at 06:22:07PM +0100, Benoit Perrin wrote: >Hello, > >as a "me too" mail, I noted that bison core dumped with this yacc file: What would this be "me too"ing? I haven't seen anyone reporting SEGV bugs. >[snip] >bison failed only for a command line with the -d option like: > >

Cygwin 1.3.8: bison failed with new dll version

2002-01-21 Thread Benoit Perrin
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