On Wed, Oct 19, 2005 at 01:51:05PM -0400, Eran Kravitz wrote:
> Hey guys,
>
> Quick question - I'm trying to install Bochs on my machine in order to
> work on my 412 projects from home more easily... I've installed it,
> but whenever I try to run it (by simply typing "Bochs" in the terminal
> from the project's build directory) I get the following message:
>
> bochs: error while loading shared libraries: libstdc++-libc6.2-2.so.3:
> cannot open shared object file: No such file or directory
>
>
> Can anyone help? What do I have to do to get it to run my project?
Couple of potential problems:
1) you don't have that library at all
2) you have the library, but you have an older version and need to upgrade
3) you have the library, but you have a newer version, and that binary
wants the old one (which is brain dead, but it happens)
Run `locate libstdc++`, and see what version you have. If you don't have
it, install it. If you have an old version, upgrade. If you have too
new of a version, you could cheat with `ln -s <newversion> <oldversion>`
which might work, or you could just install the old version in addition
to the new version.
Building Bochs (if possible) from source dodges most of these problems.
- Rob
.