mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
e0fe667421
Since PHP 5.3 the default lexer generator is RE2C. On Unix-alike build systems there is also optional configure option --enable-re2c-cgoto which enables optimized conditional jumps using non-standard computed goto extension. It is available since RE2C 0.10.3 so it's well covered by RE2C versions PHP uses. This patch syncs usage of -g option accross the PHP Unix-alike build system.
11 lines
519 B
Makefile
11 lines
519 B
Makefile
|
|
$(srcdir)/var_unserializer.c: $(srcdir)/var_unserializer.re
|
|
@(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/standard/var_unserializer.c ext/standard/var_unserializer.re)
|
|
|
|
$(srcdir)/url_scanner_ex.c: $(srcdir)/url_scanner_ex.re
|
|
@(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re)
|
|
|
|
$(builddir)/info.lo: $(builddir)/../../main/build-defs.h
|
|
|
|
$(builddir)/basic_functions.lo: $(top_srcdir)/Zend/zend_language_parser.h
|