装32位 glibc

先装依赖 : yum install glibc-static.i686 libgcc.i686 -y

先下源码包:
下载地址:
http://ftp.gnu.org/gnu/glibc/

tar -zxvf glibc-2.18.tar.gz
cd /glibc-2.18
mkdir build
cd build/
…/configure --prefix=/usr/ CC=“gcc -m32” CXX=“g++ -m32” --host=i686-linux (注意,前边是两个点
make -j all
make install
strings /lib/libc.so.6 |grep GLIBC 往上翻,可以看到已经有2.18了
centos 装32位 glibc

centos 装32位 glibc

相关文章:

  • 2021-09-27
  • 2022-12-23
  • 2022-01-05
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-05
  • 2022-01-04
  • 2021-12-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-10
相关资源
相似解决方案