omapfbplay missing libstdc++.so.6

Hi,

I’m trying to decode a video using omapfbplay, after building ti-x11-demo-image, and the system is actually complaining about libstdc++.so.6 not being found.

root@beagleboard:~# omapfbplay
omapfbplay: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory

What package, once installed, would provide that C++ runtime dependency?

-Ilyes Gouta

Ilyes Gouta <ilyes.gouta@gmail.com> writes:

Hi,

I'm trying to decode a video using omapfbplay, after building
ti-x11-demo-image, and the system is actually complaining
about libstdc++.so.6 not being found.

root@beagleboard:~# omapfbplay
omapfbplay: error while loading shared libraries: libstdc++.so.6: cannot
open shared object file: No such file or directory

What package, once installed, would provide that C++ runtime dependency?

omapfbplay does not use C++, nor do any of the libraries it uses
(ffmpeg). Something is badly messed up in your build or your system.

Hi,

Well I actually expected that such a fundamental runtime library would be installed systematically (maybe as a part of GCC’s runtime) and to me, omapfbplay referencing such a library when in reality it doesn’t use it at all is a secondary thought.

Would cross-compiling and installing a package such as Qt Embedded, rsolve the issue (having libstdc++.so.6 installed)?

Thanks,

-Ilyes Gouta

2010/9/4 Måns Rullgård <mans@mansr.com>

Would cross-compiling and installing a package such as Qt Embedded, rsolve the issue (having libstdc++.so.6 installed)?

Yes.

$ opkg install libstdc++6 libstdc+±dev

will also do.

-Ilyes