我正在尝试通过cygwin在Android上编译openssl-1.1.0,请遵循以下指南:
Compiling the latest OpenSSL for Android
但它失败了,这就是错误:
crypto/aes/aes_ecb.c:10:20: fatal error: assert.h: No such file or directory
#include <assert.h>
我使用的是Android-ndk-r12b,Win10,cygwin 64位。
这是我在编译之前的预配置:
export NDK=~/android-ndk-r12b
$NDK/build/tools/make-standalone-toolchain.sh --platform=android-21 --toolchain=arm-linux-androideabi-4.9 --install-dir=`pwd`/android-toolchain-arm
export TOOLCHAIN_PATH=`pwd`/android-toolchain-arm/bin
export TOOL=arm-linux-androideabi
export NDK_TOOLCHAIN_BASENAME=${TOOLCHAIN_PATH}/${TOOL}
export CC=$NDK_TOOLCHAIN_BASENAME-gcc
export CXX=$NDK_TOOLCHAIN_BASENAME-g++
export LINK=${CXX}
export LD=$NDK_TOOLCHAIN_BASENAME-ld
export AR=$NDK_TOOLCHAIN_BASENAME-ar
export RANLIB=$NDK_TOOLCHAIN_BASENAME-ranlib
export STRIP=$NDK_TOOLCHAIN_BASENAME-strip
export ARCH_FLAGS="-mthumb"
export ARCH_LINK=
export CPPFLAGS=" ${ARCH_FLAGS} -fpic -ffunction-sections -funwind-tables -fstack-protector -fno-strict-aliasing -finline-limit=64 "
export CXXFLAGS=" ${ARCH_FLAGS} -fpic -ffunction-sections -funwind-tables -fstack-protector -fno-strict-aliasing -finline-limit=64 -frtti -fexceptions "
export CFLAGS=" ${ARCH_FLAGS} -fpic -ffunction-sections -funwind-tables -fstack-protector -fno-strict-aliasing -finline-limit=64 "
export LDFLAGS=" ${ARCH_LINK} "
./Configure android
PATH=$TOOLCHAIN_PATH:$PATH make
请帮我告诉我哪里错了
编辑:
按照jww的建议,我尝试使用https://wiki.openssl.org/index.php/Android
我将setenv-android.sh中的一些配置更改为:
-_ANDROID_NDK="android-ndk-r12b"
-_ANDROID_EABI="arm-linux-androideabi-4.9"
-_ANDROID_API="android-21"
要生成有效的工具链,我将“windows-x86_64”添加到 主机在“linux-x86_64”“linux-x86”“darwin-x86_64”“darwin-x86” 现在是:
for host in "linux-x86_64" "linux-x86" "darwin-x86_64" "darwin-x86" "windows-x86_64"
do
....
done
+ Build openssl-1.1.0:
错误:
$ perl -pi -e 's/install: all install_docs install_sw/install: install_docs install_sw/g' Makefile.org
Can't open Makefile.org: No such file or directory.
编辑2:
我按照jww的wiki更新顺利运行,直到这个命令:
arm-linux-androideabi-gcc -I /usr/local/ssl/include my_prog.c -o my_prog.exe -L /usr/local/ssl/lib -lssl -lcrypto
如果我使用$ANDROID_TOOCHAIN/arm-linux-androideabi-gcc -I /usr/local/ssl/include my_prog.c -o my_prog.exe -L /usr/local/ssl/lib -lssl -lcrypto
,则无法理解-I
和my_prog.c
我想为android构建openssl-1.1.0,但我不知道如何修复它。请帮忙
答案 0 :(得分:1)
我试图用
为Android构建OpenSSL 1.1.0gandroid NDK android-ndk-r16b, centOS 6.9 64 bit OS.
根据https://wiki.openssl.org/index.php/Android
并遇到同样的问题
crypto/aes/aes_ecb.c:10:20: fatal error: assert.h: No such file or directory
#include <assert.h>
搜索后,我发现更新的NDK android-ndk-r16b
已将sysroot
更新为android-ndk-r16b/sysroot
,其中包含包含目录但没有库。
因此包含路径和库路径已更改
但setenv-android.sh
将sysroot
设为
export ANDROID_SYSROOT="$ANDROID_NDK_ROOT/platforms/$_ANDROID_API/$_ANDROID_ARCH"
但这对android-ndk-r13b
有效我可以使用android-ndk-r13b成功构建OpenSSL。
答案 1 :(得分:1)
请看一下这个Github库:https://github.com/sqlcipher/android-database-sqlcipher/blob/gradle/android-database-sqlcipher/build-openssl-libraries.sh。
setenv-android.sh
没有必要。这确实有效。