Description
Hi, I'm wondering how I might go about using netlib-java or its derivatives with native libraries on Android and if you had any tips. I see that you've ported it to Raspberry Pi so that seems promising for Android, but since you usually don't have a build environment on Android itself we have to cross compile, which makes things complicated. I've tried the braindead step of just grabbing ARM versions of libblas.so and liblapack.so from Ubuntu repos (I guess using ATLAS) and sticking them in /system/lib but this doesn't work. Do I need gfortran as well? Do you have any suggestions on how to debug the JNI native library loading process so I can see what it's doing? I'm trying to see if I can do something cool with breeze on Android and the F2J implementation works for now but obviously it's much slower than I'd want to actually use for a proper app.
Thanks!