Added arm64 build script to OpenSSL

This commit is contained in:
pelya
2016-06-29 00:27:17 +03:00
parent 418d868a88
commit fa42edbb62
13 changed files with 94 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/sh
ARCH_LIST="x86 mips armeabi-v7a armeabi"
ARCH_LIST="arm64-v8a x86 mips armeabi-v7a armeabi"
mkdir -p build
@@ -11,6 +11,8 @@ build() {
CONFIGURE_ARCH=android-armv7;;
armeabi)
CONFIGURE_ARCH=android;;
arm64-v8a)
CONFIGURE_ARCH=android;;
*)
CONFIGURE_ARCH=android-$ARCH;;
esac