hughperkins / jeigen

Java wrapper for Eigen C++ fast matrix library
Other
106 stars 31 forks source link

Thank you for your library. which files would i use for android development? #9

Closed behsaman closed 8 years ago

hughperkins commented 8 years ago

Android .... hmmm.... well... jeigen comprises two parts:

If portability is more important than raw performance, you might consider a java-only library. It might be half as fast, especially for matrix multiplications, but it will be significantly more portable, easier to package and install.

Otherwise... you will need to build the native library for your target platform somehow. You can take a look at the CMakeLists.txt, in the src/native directory, and try building this (eg using cmake + some kind of c compiler).

hughperkins commented 8 years ago

Note: I googled a bit, for 'android cmake', and came up with the following links, for building for android, using cmake: