Android NDK originally included libstdc++.a/libstdc++.so at build/
platforms/android-N/arch-arm/usr/lib. This is _very_ restricted
version of C++ library; actually it contains only operator new/delete
and type_info default implementation. Library liblog.so is linked
against it. Now, look to my NDK - it remove original libstdc++.a/
libstdc++.so and use own (full) libstdc++.a instead. Of course, on
link stage libstdc++.so will not be found. But this is not problem
because libstdc++.a (linked to binary) contains all required stuff for
liblog and even more. You can safely ignore this warning. Applications
depends on liblog and compiled by my NDK just works fine.
Dmitry Moskalchuk
24.07.2010, в 3:27, Akshay Gattani написал(а):