Compiling c++ for an ARM device
Hi,
This may be a silly question.
I have this c++ app and I want to compile it for an android device.
I know I need root to run those things, but that's not a problem.
It's compiled with g++ with parameter "-s" and has the following includes
Code:
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <ctime>
Would I be able to get this to work?
Thanks :wave:
Re: Compiling c++ for an ARM device
Look for info on "cross compiling" in the GCC man pages, that may hold some answers. However you'll likely get a better answer from an android forum.