赞
踩
下载glibc-2.23.tar.gz到服务器
1、先运行下面命令解压到当前路径:
tar -zxvf glibc-2.17.tar.gz
在 https://ftp.gnu.org/gnu/glibc/ 或者 http://ftp.twaren.net/Unix/GNU/gnu/libc/ 里选择下载 对应版本.
2、编译安装
cd glibc-2.23
./configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin
此时报错
方法: 需要新建一个目录
mkdir build
cd build
../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin
然后又出现了新的问题
解决方法如图所示:
分别执行:
echo $LD_LIBRARY_PATH
export LD_LIBRARY_PATH=
echo $LD_LIBRARY_PATH
../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin
3、
安装
make
make install
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。