glibc升级_CentOS7下升级GLIBC2.31
生活随笔
收集整理的這篇文章主要介紹了
glibc升级_CentOS7下升级GLIBC2.31
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、當前系統版本及GLIBC版本信息
[root@localhost?~]#?cat?/etc/redhat-release?CentOS?Linux?release?7.6.1810?(Core)?
[root@localhost?~]#?uname?-r
3.10.0-957.el7.x86_64
[root@localhost?~]#??strings?/lib64/libc.so.6?|?grep?GLIBC
[root@localhost?~]#?ll?/lib64/libc.so*
2、源碼編譯升級gcc9.3.0
1)編譯升級gcc
wget?https://mirrors.aliyun.com/gnu/gcc/gcc-9.3.0/gcc-9.3.0.tar.gzcp?gcc-9.3.0.tar.gz?/optcd?/opt
tar?-zxf?gcc-9.3.0.tar.gzcd?gcc-9.3.0/
?./contrib/download_prerequisites建議先手動下載依賴的這四個包,下載地址ftp://gcc.gnu.org/pub/gcc/infrastructure/
cat?/proc/cpuinfo|?grep?"processor"|?wc?-lmkdir?buildcd?build
../configure?--enable-checking=release?--enable-language=c,c++?--disable-multilib?--prefix=/usr
make?-j6
make?install
2)升級成功后gcc版本檢查
cd?/usr/lib64ll?libstdc++*
gcc?-v
gcc?--version
3、源碼編譯升級make
1)編譯升級make
wget?https://mirrors.aliyun.com/gnu/make/make-4.3.tar.gzcp?make-4.3.tar.gz?/optcd?/opt/
tar?-zxf?make-4.3.tar.gz?cd?make-4.3/
mkdir?buildcd?build
../configure?--prefix=/usr?&&?make?&&?make?install
2)檢查升級后的make版本信息
make?-v4、升級glibc-2.31
cd?/optwget?https://mirrors.aliyun.com/gnu/glibc/glibc-2.31.tar.gz
tar?-zxf?glibc-2.31.tar.gzcd?glibc-2.31/
cat?INSTALL?|?grep?-E?"newer|later"
mkdir?buildcd?build
../configure??--prefix=/usr?--disable-profile?--enable-add-ons?--with-headers=/usr/include?--with-binutils=/usr/bin?--disable-sanity-checks?--disable-werror
yum?install?python3
make?-j6
make?install
make?localedata/install-locales
報錯是由于python版本較低
下面yum install python3解決后重新配置并make編譯安裝
../configure? --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin --disable-sanity-checks --disable-werror
make -j6
make install
最后驗證升級后的glibc版本
strings?/lib64/libc.so.6?|?grep?GLIBCll?/lib64/libc.so*
總結
以上是生活随笔為你收集整理的glibc升级_CentOS7下升级GLIBC2.31的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python if else break
- 下一篇: android 集成同一interfac