您好我正在尝试使用以下指南构建libcrypto.so和libssl.so文件,以便与我们的某个Android NDK项目一起使用
https://wiki.openssl.org/index.php/Android
在流程结束时,它似乎吐了libcrypto.a和libssl.a文件?
以下是我执行的命令
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
我错过了什么?