linux系统安装bison,解决 These critical programs are missing or too old: bison compiler

1、编译 glibc 过程中报错

../configure --prefix=/opt/glibc-2.27

 

 

 

2、首先查看bison 版本  

bison --version
bison -V

 

 

 

貌似就没有安装bison 。

 

3、使用 yum 安装bison 

yum install bison

 

 安装成功。

  4、查看 版本:

bison --version

 

 居然这么简单就完成了。

5、继续编译 glibc :

../configure --prefix=/opt/glibc-2.27

 

 

 果然,bison的问题消失了。

 

相关文章

系ubuntu 下面打开终端输入:sudo apt-get install sendmail...
依家我有1个软件goagent目录(大家懂得) 放在/home/gateman/...
其实我想讲的是 cp -L关于-L参数的解释:-L, --dereferenc...
原地址:http://www.rjgc.net/control/content/content.php?...
chroot,即 change root directory (更改 root 目录)。在 li...
简单解析下, stdin就是标准输入, stdout就是标准。举个例子...