Centos running program can not find libstdc++.so.6 error how to solve the problem
Today Xiaobian to share with you centos running program can not find libstdc++.so.6 error how to solve the relevant knowledge points, detailed content, clear logic, I believe most people are still too familiar with this knowledge, so share this article for your reference, I hope you have read this article after harvest, let's learn about it together.
Libstdc++.so.6 problem encountered when running the program Cause:
The system is 64bit, the library is 32bit, and the 32bit library is installed on the 64bit system
Solution:
libstdc++-4.4.7-4.el6.i686
yum install libstdc++-4.4.7-4.el6.i686
Error:
-> Finished Dependency Resolution
Error: Protected multilib versions: libstdc++-4.4.7-4.el6.i686 != libstdc++-4.4.7-3.el6.x86_64
You could try using -skip-broken to work around the problem
You could try running: rpm -Va -nofiles -nodigest
….
Solution:
yum update libstdc++-4.4.7-3.el6.x86_64
Then yum install libstdc++-4.4.7-4.el6.i686
The above is "centos running program can not find libstdc++.so.6 error how to solve" all the contents of this article, thank you for reading! I believe everyone has a great harvest after reading this article. Xiaobian will update different knowledge for everyone every day. If you want to learn more knowledge, please pay attention to the industry information channel.