I have built an Android application using shared libraries using the NDK. The emulator is currently running on a Linux x86 platform. However, I now need to move libraries over to an s3c6410 ARM processor. I also would like to use an existing cross compiler specific for the device’s platform that also handles C++ better. Everything I’ve read so far is rather cryptic.
1) How do I change to a new platform?
2) How do I change to use an existing cross-compiler?
3) Can I mix the NDK compiler for java (ex: second.c in two-libs example) and my own static library to produce a shared library?