I'm porting a certain application from Linux to Android. When I tried to run the executable in the Android emulator I faced the following error:
reloc_library[1285]: 867 cannot locate '_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc'
I could sense it is somehow related to cout, but I am not sure. Could someone give a hint how to resolve this issue?
c++filtdemangles this tostd::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)– Mankarse Mar 15 '12 at 8:44libstdc++you are compiling with, and ensure that it is the same version as that loaded in by the emulator. – Mankarse Mar 15 '12 at 8:54lddto list the dependencies of your binary. Also try using the__GLIBCXX__macro to find the version that you are compiling with (documented here). – Mankarse Mar 15 '12 at 9:28