panda-api
panda-api copied to clipboard
Centos7 不使用 OpenSSL 1.0.0
panda: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
./install: /lib64/libc.so.6: version 'GLIBC_2.18' not found (required by ./install)
同时需要编译安装glibc-2.18
方法为:
curl -O http://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.gz
tar zxf glibc-2.18.tar.gz
cd glibc-2.18/
mkdir build
cd build/
../configure --prefix=/usr
make -j2
make install
好的,收到,我试一试,谢谢