glibc编译时报错:configure: error:*** LD_LIBRARY_PATH shouldn‘t contain the current directory when ***

在编译glibc时,进到glibc源码里:

cd glibc-source && mkdir build &&cd build

开始配置,执行了如下命令:../configure --prefix=/opt/glibc
然后报如下错误:
“configure: WARNING:
*** These auxiliary programs are missing or incompatible versions: makeinfo
*** some features or tests will be disabled.
*** Check the INSTALL file for required versions.
checking LD_LIBRARY_PATH variable… contains current directory
configure: error:
*** LD_LIBRARY_PATH shouldn’t contain the current directory when
*** building glibc. Please change the environment variable
*** and run configure again.

网上也搜索了下,说是环境变量的问题,摸索了下,不用去改配置文件,只要在刚刚执行命令的终端下运行下面这个命令就可以了,然后再执行上面的配置命令就会成功了。

export LD_LIBRARY_PATH=

图示:
在这里插入图片描述
(一开始有报错,这行执行后,在配置的运行结果就会成功)
在这里插入图片描述
希望能帮到你。