help-flex
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: flex 2.5.5 check


From: John W. Millaway
Subject: Re: flex 2.5.5 check
Date: Mon, 30 Apr 2001 11:18:55 -0700 (PDT)

> Both of the above failures are in TESTS/test-string-r/scanner.c
>   cc -I. -I"." -I.. -g -c scanner.c
>   "scanner.c", line 786: undefined symbol: yy_globals
> 

Bug found. 'cc' wants K&R -style declarations. I had neglected to handle this 
for
YY_DECL (and possibly elsewhere). The result was:

     int yylex()
     {

Instead of:

     int yylex( yy_globals )
         void * yy_globals;
     {

Thanks again to those who reported this!

-John Millaway


__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]