Fortran compiler
1 answer
Haven't tried it myself, but people have successfully created gfortran for android. See http://specificimpulses.blogspot.com/2012/08/something-borrowed-android-fortran.html and http://danilogiulianelli.blogspot.com/2013/02/how-to-build-gcc-fortran- cross-compiler.html .
If the only reason for your C code is to convert Fortran code, perhaps you can just use ISO_C_BINDING (with gfortran support) and access the JNI directly (with ISO_C_BINDING you can make Fortran code ABI compatible with C).
+1
source to share