Reputation: 11532
I have one .so library
compiled for x86
and I need to deploy and use on another computer(laso Ubuntu), but when I start I get error libboost_python-py27.so.1.53.o No such file or directory
, when I ls through /usr/lib I found libboost_python-py27.so.1.49.o
. What to do ?
Upvotes: 2
Views: 3135
Reputation: 19242
The numbers indicate the version of boost. (See boost.org) Your code is looking for 1.53, but you only have 1.49 deployed.
You will need to get a copy of the newer libraries and deploy them - for example by getting the relevant version of boost and building the libraries. Or copying them from the machine which has the newer libraries.
Upvotes: 2