Flex-2.5.39
Grep-2.21
Bison 软件包包含一个语法生成器。
准备编译 Bison:
./configure --prefix=/usr --docdir=/usr/share/doc/bison-3.0.4
编译软件包:
make
用以下命令测试结果(大约 0.5 SBU):
make check
安装软件包:
make install
bison
根据一系列规则生成用于分析文本结构的程序;Bison 是 Yacc(Yet Another Compiler Compiler) 的替代品。
yacc
bison 的封装,用于仍然调用 yacc 而不是 bison 的程序;它用 -y 选项调用 bison
-y
liby
Yacc 库包含和 Yacc 兼容的 yyerror 和 main 程序的实现;这个库并不是很有用,但是 POSIX 要求有它
yyerror
main