1.准备工作
1.1升级gcc到gcc8
# 安装devtoolset-8-gcc
yum install centos-release-scl
yum install devtoolset-8
scl enable devtoolset-8 -- bash
# 启用工具
source /opt/rh/devtoolset-8/enable
# 安装GCC-8
yum install -y devtoolset-8-gcc devtoolset-8-gcc-c++ devtoolset-8-binutils
# 设置环境变量
echo "source /opt/rh/devtoolset-8/enable" >> /etc/profile
source /etc/profile
1.2升级make到4.0以上版本
wget http://mirrors.ustc.edu.cn/gnu/make/make-4.0.tar.gz
tar xf make-4.0.tar.gz
cd make-4.0/
./configure
make & make install
mv /usr/bin/make /usr/bin/make.bak
ln -s /usr/local/bin/make /usr/bin/make
make -v
文章来源:https://www.toymoban.com/news/detail-759216.html
1.3 安装bison
yum install bison
2.编译
2.1下载并解压
# 下载并解压安装包
$ wget https://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz
$ tar -xzvf glibc-2.28.tar.gz
$ cd glibc-2.28
# 创建临时文件
$ mkdir build && cd build
2.2配置
# 配置环境
../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin
2.3 编译和安装
make & make install
strings /lib64/libc.so.6 | grep GLIBC
文章来源地址https://www.toymoban.com/news/detail-759216.html
到了这里,关于linux升级glibc-2.28的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!