On Sun, 18 May 2014 14:57:41 +0200
Tijl Coosemans <t...@freebsd.org> wrote:

> On Sat, 17 May 2014 16:51:19 +0200 Molnár Károly wrote:
> >    * The gputils can be compiled with newer versions of bison and flex.

Borut made ​​this change.

> 
> In gpasm/Makefile.am you should replace "flex" with "$(LEX)" or
> "flex $(AM_LFLAGS)" with "$(LEXCOMPILE)".
> 
> Older versions of FreeBSD ship with an older version of flex so when a
> newer version is required we need to do "./configure LEX=/path/to/new/flex".
> 
> You don't have to do a new release for this by the way.  Just include it
> in the next one.
> 
> Tijl - FreeBSD sdcc/gputils package maintainer.
> 

Then instead of:

ppscan.c: ppscan.l
        flex $(AM_LFLAGS) -P pp -o $@ $<

This will be:

ppscan.c: ppscan.l
        $(LEX) $(AM_LFLAGS) -P pp -o $@ $<

Thank you for your suggestion and feedback.

Károly

------------------------------------------------------------------------------
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to