重要说明①:安装前需要使用scl和devtoolset临时切换为GCC-8环境。
重要说明②:安装完glibc会导致软链接文件/lib64/libstdc++.so.6的指向被修改,将其修改回来即可。
glibc下载地址:https://ftp.gnu.org/gnu/glibc/
[root@localhost src]# tar -xf glibc-2.28.tar.gz && cd glibc-2.28
[root@localhost glibc-2.28]# mkdir build && cd build
[root@localhost build]# ../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin
[root@localhost build]# make
[root@localhost build]# make install