View Single Post
Applesaws's Avatar
Posts: 21 | Thanked: 15 times | Joined on Jan 2011
#76
It doesn't work because minecraft-pi has been linked against a newer version of libstdc++ (and consequently compiled with a newer version of GCC) than is available for N900.
Code:
~/mcpi $ ldd minecraft-pi
./minecraft-pi: /usr/lib/libstdc++.so.6: version 'GLIBCXX_3.4.15' not found (required by ./minecraft-pi)

<SNIP>

~/mcpi $ strings /usr/lib/libstdc++.so.6 | grep GLIBC
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBC_2.4
GLIBCXX_FORCE_NEW
Also there's the more minor problem that it depends on "libbcm_host.so", which is a library that exists only on the Raspberry Pi to interface with the SoC (which means it might be doing specialized hardware initialization).
The only solution I can see is to somehow compile a newer version of libstdc++ and append its location to LD_LIBRARY_PATH while launching.

Last edited by Applesaws; 2013-02-13 at 00:55.
 

The Following User Says Thank You to Applesaws For This Useful Post: