I cross compiled gsl fro android using arm-linux-androideabi. When I dynamically loaded this library in android-studio, it gave me error.
can not locate symbol cblas_sdsdot.
I ran nm command on gsl and got
U cblas_sdsdot
Then I ran nm command on gslcblas and got
000002645 T cblas_sdsdot.
I also loaded gslcblas.so before gsl.so but still I am getting the error. Any suggestion to get rid of this problem? Thanks