Solved the problem of/usr/lib/libstdc ++. so.6: Version 'glibcxx _ 3.4.9 'not found.
(13:09:09)
Reprinted
Embedded has just encountered many problems and frustrated, but it is always unsuccessful at the beginning. I remember a Senior sister told me that one day, this result will come out, calm down, and learn it will have the determination to conquer him. Everything will be fine, right?
The following are my problems:
My cross-compilation error prompt
/Opt/friendlyarm/toolschain/4.4.3/libexec/GCC/ARM-None-Linux-gnueabi/4.4.3/PC3:/usr/lib/libstdc ++. so.6: Version 'glibcxx _ 3.4.9 'not found (required by/opt/friendlyarm/toolschain/4.4.3/lib/libppl_c.so.2)
/Opt/friendlyarm/toolschain/4.4.3/libexec/GCC/ARM-None-Linux-gnueabi/4.4.3/PC3:/usr/lib/libstdc ++. so.6: Version 'glibcxx _ 3.4.9 'not found (required by/opt/friendlyarm/toolschain/4.4.3/lib/libppl. so.7)
I am a beginner. I encountered this error and did not know how to solve it. I visited many forums and finally found the answer.
(1) ls-L/usr/lib/libstdc ++. so.6
It is linked to libstdc ++. so.6.0.8
Glibcxx_3.4.9 is not supported
(2) download libstdc ++. so.6.0.10
Put this file in/Usr/lib.
If you cannot find the file, try the following link:
Http://xz.qjwm.com/down.aspx? Down = OK & filepath = jyb168/ѧ ϰ ļ ¼/MP3 �� ֲ/libstdc ++. so.6.0.10
I am on this website.
(3) then put/usr/lib/libstdc ++. so.6
->/Usr/lib/libstdc ++. so.6.0.8 soft link Deletion
(4)Ln-S/usr/lib/libstdc ++. so.6.10/Usr/lib/libstdc ++. so.6
Use this command to recreate the soft link.
Solution!