panda-api icon indicating copy to clipboard operation
panda-api copied to clipboard

Centos7 不使用 OpenSSL 1.0.0

Open ghost opened this issue 5 years ago • 2 comments

panda: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory

ghost avatar Mar 27 '20 03:03 ghost

./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

ghost avatar Mar 27 '20 03:03 ghost

好的,收到,我试一试,谢谢

arlicle avatar Apr 19 '20 04:04 arlicle