"no version information" warning when starting pypy on centos6

I struggled with this for several hours and donโ€™t know how to get rid of it (or if it causes any problems for me), but I continue to receive the following warnings when I run pypy on centos6:

[ root@domU-123 bin]# ./pypy ./pypy: /usr/lib64/libssl.so.0.9.8: no version information available (required by ./pypy) ./pypy: /usr/lib64/libcrypto.so.0.9.8: no version information available (required by ./pypy) Python 2.7.2 (0e28b379d8b3, Feb 09 2012, 19:41:03) [PyPy 1.8.0 with GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. And now for something completely different: ``"Let go." - "We can't" - "Why not?" - "We're waiting for a Translation." - (despairingly) "Ah!"'' >>>> 

Here is a copy of my install script (I install this on a new centos system):

 #install pypy wget https://bitbucket.org/pypy/pypy/downloads/pypy-1.8-linux64.tar.bz2 tar xvf pypy* yum -y install openssl098e ln -s /usr/lib64/libssl.so.0.9.8e /usr/lib64/libssl.so.0.9.8 ln -s /usr/lib64/libcrypto.so.0.9.8e /usr/lib64/libcrypto.so.0.9.8 ln -s /lib64/libbz2.so.1.0.4 /lib64/libbz2.so.1.0 

Can someone tell me how to fix this? Am I missing a package or do I need to configure something?

+4
source share
1 answer

this is a problem with binary compatibility problem with linux

in principle, if you do not have the same distribution / version as the build server, you can assume that it might break due to the wrt libs distribution policy

for the latest builds, most likely it is broken for everything that doesn't look like the build server (which runs the recent ubuntu)

(before he was debian, but it violated opensl in strange ways on a regular basis)

since distributions tend to break common binary compatibility on a regular basis, it's not that the pypy core team will spend more time on

need external accompanying

+2
source

Source: https://habr.com/ru/post/1397232/


All Articles