我已经按照其他文章中提供的说明解决了以下问题,但是对于我的系统似乎仍然不起作用。我正在尝试在我的CentOS 7.3机器上将glibc升级到v2.27。我下载了该软件包,并在配置脚本执行过程中遇到了以下编译器依赖项:
../configure --prefix=/opt/glibc-2.27
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for gcc... gcc
...
...
checking if gcc is sufficient to build libc... no
checking for nm... nm
checking for python3... no
checking for python... python
configure: error:
*** These critical programs are missing or too old: compiler
*** Check the INSTALL file for required versions.
所以我升级了我的gcc并验证了升级版本: gcc --version gcc(GCC)8.2.0
我的bashrc中还设置了以下环境变量: 导出CC = / usr / local / bin / gcc
由于某种原因,configure脚本仍会基于未使用升级版gcc版本而引发相同的错误。
我想念什么?