共计 1064 个字符,预计需要花费 3 分钟才能阅读完成。
Tips: 如果不装 libstdc++.so 会报错:ImportError: /usr/lib64/libstdc++.so.6: version'GLIBCXX_3.4.15' not found (required by /opt/calibre/lib/libQt5WebKit.so.5)
GLIBC_2.18
,GLIBCXX_3.4.19
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# yum install libstdc++.so.6 -y --- 查看动态库版本有哪些 # strings /usr/lib64/libstdc++.so.6 | grep GLIBC # wget http://ftp.de.debian.org/debian/pool/main/g/gcc-4.8/libstdc++6-4.8-dbg_4.8.4-1_amd64.deb # ar -x libstdc++6-4.8-dbg_4.8.4-1_amd64.deb # tar -xvf data.tar.xz -- 拷贝至 /usr/lib64 下 # cp ./usr/lib/x86_64-linux-gnu/debug/libstdc++.so.6.0.19 /usr/lib64 -- 授权 # chmod +x /usr/lib64/libstdc++.so.6.0.19 -- 删除低版本库的软连接 # rm /usr/lib64/libstdc++.so.6 # ln -s /usr/lib64/libstdc++.so.6.0.19 /usr/lib64/libstdc++.so.6 # cd /usr/local # wget http://mirrors.ustc.edu.cn/gnu/libc/glibc-2.18.tar.gz # tar -xzvf glibc-2.18.tar.gz # cd glibc-2.18 # mkdir build && cd build/ # ../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin # make -j4 # make install --- 解决中文乱码问题 # make localedata/install-locales --- 检查验证 # ll /lib64/libc* --- 查看系统 glibc 支持的版本 # strings /lib64/libc.so.6 |grep GLIBC # /lib64/libc.so.6
|