文章目录[隐藏]
GNU bison是一个自由软件,用于自动生成语法分析器程序,实际上可用于所有常见的操作系统。Bison把LALR形式的上下文无关文法描述转换为可做语法分析的C或C++程序。在新近版本中,Bison增加了对GLR语法分析算法的支持,我们在升级Php7时需要先升级安装bison
linux中如何查看安装bison的版本
# bison -V
[root@localhost ~]# bison -V
bison (GNU Bison) 2.6.4
由 Robert Corbett 和 Richard Stallman 编写。
版权所有 (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
官网:http://www.bison.net/
下载:http://download.chinaunix.net/download/0001000/913.shtml
升级编译安装bison
wget http://ftp.gnu.org/gnu/bison/bison-2.6.4.tar.gz
tar -xvzf bison-2.6.4.tar.gz
cd bison-2.6.4
./configure
make && make install