I created an Android application using shared libraries using NDK . The emulator currently runs on the Linux x86 platform. However, now I need to move the libraries to the s3c6410 ARM processor . I would also like to use the existing cross-compiler for the device platform, which also handles C ++ better. Everything that I have read so far is rather mysterious.
1) How do I upgrade to a new platform?
2) How to change the use of an existing cross-compiler?
3) Is it possible to mix the NDK compiler for java (example: second.c in the example with two libs) and my own static library to create a shared library?
source
share