On Wed, 25 Nov 2009 11:40:25 +0100, you wrote: >root:# objdump -p libstdc++.so.6.0.8 > >libstdc++.so.6.0.8: file format elf32-i386 > >ldconfig did find the library, but could not extract the version info >(regarding CXXABI and GLIBCXX), since it's obviously not there. And >I don't know why. If there is no version info, you'll have to examine the build log of your gcc (or start a new build and log that) and search for the line(s) where libstdc+ is itself linked. I haven't looked at gcc makefiles for a long time but ld should be passed a version script that contains the versioning info ld will then put into the library. Philipp