Hi i am trying to build the libcrypto.so and libssl.so file for use with one of our Android NDK projects using this guide below
https://wiki.openssl.org/index.php/Android
At the end of the process it seems to spit on libcrypto.a and libssl.a files instead?
Here are the commands i executed
sudo ./config shared no-ssl2 no-ssl3 no-comp no-hw no-engine --openssldir=/Users/jon/ssl/$ANDROID_API/ \ --with-fipsdir=/Users/jon/ssl/$ANDROID_API/ --with-fipslibdir=/Users/jon/ssl/$ANDROID_API/lib/
make depend
make all
sudo -E make install CC=$ANDROID_TOOLCHAIN/arm-linux-androideabi-gcc RANLIB=$ANDROID_TOOLCHAIN/arm-linux-androideabi-ranlib
what am i missing?