mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
With Bison 3.0 some directives are deprecated:
- %name-prefix "x" should be %define api.prefix {x}
- %error-verbose should be %define parse.error verbose
Bison 3.3 also started emiting more warnings and since PHP souce parsers
are not POSIX compliant this patch fixes this as pointed out via
495a46aa1d.
89 lines
3.5 KiB
Bash
Executable File
89 lines
3.5 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# +----------------------------------------------------------------------+
|
|
# | PHP Version 7 |
|
|
# +----------------------------------------------------------------------+
|
|
# | Copyright (c) The PHP Group |
|
|
# +----------------------------------------------------------------------+
|
|
# | This source file is subject to version 3.01 of the PHP license, |
|
|
# | that is bundled with this package in the file LICENSE, and is |
|
|
# | available through the world-wide-web at the following url: |
|
|
# | https://php.net/license/3_01.txt |
|
|
# | If you did not receive a copy of the PHP license and are unable to |
|
|
# | obtain it through the world-wide-web, please send a note to |
|
|
# | license@php.net so we can mail you a copy immediately. |
|
|
# +----------------------------------------------------------------------+
|
|
# | Authors: Sascha Schumann <sascha@schumann.cx> |
|
|
# +----------------------------------------------------------------------+
|
|
#
|
|
# This script generates PHP lexer and parser files required to build PHP. The
|
|
# generated files are ignored in the Git repository and packaged during the PHP
|
|
# release process into the release installation archive download. This way the
|
|
# bison and re2c dependencies are not required to build PHP when downloading
|
|
# release archive.
|
|
#
|
|
# Usage: genfiles
|
|
#
|
|
# Environment:
|
|
# The following environment variables can override default generators paths.
|
|
#
|
|
# YACC Parser generator program, default bison
|
|
# RE2C Lexer generator program, default re2c
|
|
#
|
|
# For example:
|
|
# YACC=/path/to/bison ./genfiles
|
|
|
|
# Parser generator
|
|
YACC=${YACC:-bison}
|
|
YACC="$YACC -l"
|
|
|
|
# Lexer generator
|
|
RE2C=${RE2C:-re2c}
|
|
RE2C_FLAGS="-i"
|
|
|
|
# Current path to return to it later. This enables running script from any path.
|
|
original_path=`pwd`
|
|
|
|
# Project root directory
|
|
project_root=`CDPATH= cd -- "$(dirname -- "$0")/../../" && pwd -P`
|
|
cd $project_root
|
|
|
|
echo "Generating Zend parser and lexer files"
|
|
make RE2C="$RE2C" RE2C_FLAGS="$RE2C_FLAGS" YACC="$YACC" srcdir=Zend builddir=Zend top_srcdir=. \
|
|
-f Zend/Makefile.frag \
|
|
Zend/zend_language_parser.c \
|
|
Zend/zend_language_scanner.c \
|
|
Zend/zend_ini_parser.c \
|
|
Zend/zend_ini_scanner.c
|
|
|
|
echo "Generating phpdbg parser and lexer files"
|
|
make RE2C="$RE2C" RE2C_FLAGS="$RE2C_FLAGS" YACC="$YACC" srcdir=sapi/phpdbg builddir=sapi/phpdbg top_srcdir=. \
|
|
-f sapi/phpdbg/Makefile.frag \
|
|
sapi/phpdbg/phpdbg_parser.c \
|
|
sapi/phpdbg/phpdbg_lexer.c
|
|
|
|
echo "Generating json extension parser and lexer files"
|
|
make RE2C="$RE2C" RE2C_FLAGS="$RE2C_FLAGS" YACC="$YACC" srcdir=ext/json builddir=ext/json top_srcdir=. \
|
|
-f ext/json/Makefile.frag \
|
|
ext/json/json_parser.tab.c \
|
|
ext/json/json_scanner.c
|
|
|
|
echo "Generating PDO lexer file"
|
|
make RE2C="$RE2C" RE2C_FLAGS="$RE2C_FLAGS" srcdir=ext/pdo builddir=ext/pdo top_srcdir=. \
|
|
-f ext/pdo/Makefile.frag \
|
|
ext/pdo/pdo_sql_parser.c
|
|
|
|
echo "Generating standard extension lexer files"
|
|
make RE2C="$RE2C" RE2C_FLAGS="$RE2C_FLAGS" srcdir=ext/standard builddir=ext/standard top_srcdir=. \
|
|
-f ext/standard/Makefile.frag \
|
|
ext/standard/var_unserializer.c \
|
|
ext/standard/url_scanner_ex.c
|
|
|
|
echo "Generating phar extension lexer file"
|
|
make RE2C="$RE2C" RE2C_FLAGS="$RE2C_FLAGS" srcdir=ext/phar builddir=ext/phar top_srcdir=. \
|
|
-f ext/phar/Makefile.frag \
|
|
ext/phar/phar_path_check.c
|
|
|
|
# Return to the original directory.
|
|
cd $original_path
|