forked from Tencent/wcdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-depends-android.sh
executable file
·249 lines (217 loc) · 7.9 KB
/
build-depends-android.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#!/bin/bash
# Used configurations
OPENSSL_CONFIG="no-rc2 no-cast \
no-md2 no-md4 no-md5 no-ripemd no-mdc2 \
no-rsa no-dsa no-dh no-ec no-ecdsa no-ecdh \
no-sock no-ssl no-tls no-krb5 \
no-shared no-comp no-hw no-engine no-zlib no-fips \
-ffunction-sections -fdata-sections -Wl,--gc-sections"
SQLCIPHER_CFLAGS="-DSQLITE_DEFAULT_WORKER_THREADS=2 \
-DSQLITE_DEFAULT_JOURNAL_SIZE_LIMIT=1048576 \
-DUSE_PREAD64=1 \
-DSQLITE_ENABLE_FTS3_TOKENIZER \
-DSQLITE_ENABLE_STAT4 \
-DSQLITE_ENABLE_EXPLAIN_COMMENTS \
-DSQLITE_HAS_CODEC -DOMIT_MEMLOCK -DOMIT_CONSTTIME_MEM \
-DSQLCIPHER_CRYPTO_CUSTOM -DSQLCIPHER_CRYPTO_XXTEA -DSQLCIPHER_CRYPTO_DEVLOCK"
SQLCIPHER_CONFIG="--disable-shared --enable-static \
--enable-fts3 --enable-fts4 --enable-fts5 --enable-json1 --enable-session \
--enable-tempstore=always --enable-threadsafe=multi --disable-tcl"
USE_CLANG=0
BUILD_ARCHS="arm,arm64,x86"
BUILD_API=12
BUILD_PIE=1
BUILD_CRYPTO=1
BUILD_SQLCIPHER=0
###############################
# Help message
###############################
show_help()
{
cat <<_EOF
Usage: build-depends-android.sh [OPTIONS]
OPTIONS:
-h,--help Show this help message.
--ndk=<path> Specify Android NDK installation path.
If this option is omitted, use ANDROID_NDK_ROOT environment variable.
--arch=<archs> Comma separated architectures to build. Default to "arm,arm64,x86"
--api=<number> API level to build. Default to 12.
--no-pie Do not build position-independent executables.
--gcc Uses GCC toolchains. This is the default.
--clang Uses clang toolchains.
--no-crypto Do not build libcrypto.
--build-sqlcipher Build SQLCipher library and executables.
_EOF
}
# Parse arguments.
argv=`getopt -o 'h' -l 'help,ndk:,arch:,api:,clang,gcc,no-pie,no-crypto,build-sqlcipher' -- "$@"`
[ $? != 0 ] && exit 1
eval set -- "$argv"
while true; do
case "$1" in
-h|--help) show_help; exit 1 ;;
--ndk) ANDROID_NDK_ROOT="$2"; shift 2 ;;
--arch) BUILD_ARCHS="$2"; shift 2 ;;
--api) BUILD_API="$2"; shift 2 ;;
--clang) USE_CLANG=1; shift ;;
--gcc) USE_CLANG=0; shift ;;
--no-pie) BUILD_PIE=0; shift ;;
--no-crypto) BUILD_CRYPTO=0; shift ;;
--build-sqlcipher) BUILD_SQLCIPHER=1; shift ;;
--) shift; break ;;
*) echo "Unreconized option: $1"; exit 1 ;;
esac
done
# Locate Android NDK
if [ -z "$ANDROID_NDK_ROOT" ] || [ ! -d "$ANDROID_NDK_ROOT" ]; then
echo "Error: ANDROID_NDK_ROOT is not a valid path."
echo 'Set Android NDK location using `export ANDROID_NDK_ROOT=/path/to/ndk`'
exit 1
fi
echo " * Android NDK location: $ANDROID_NDK_ROOT"
# NDK must have GCC 4.9 toolchains for arm, arm64 and x86 platform.
if [ ! -d "$ANDROID_NDK_ROOT/toolchains/arm-linux-androideabi-4.9" ] || \
[ ! -d "$ANDROID_NDK_ROOT/toolchains/aarch64-linux-android-4.9" ] || \
[ ! -d "$ANDROID_NDK_ROOT/toolchains/x86-4.9" ]; then
echo "NDK must have GCC 4.9 toolchains for arm, arm64 and x86 platform."
echo "Google and download the latest one."
exit 1
fi
# Detect NDK host
ndk_host=""
for host in "windows-x86_64" "windows-x86" "linux-x86_64" "linux-x86" "darwin-x86_64"
do
if [ -d "$ANDROID_NDK_ROOT/toolchains/arm-linux-androideabi-4.9/prebuilt/$host/bin" ]; then
ndk_host=$host
break
fi
done
# Fix API level and architectures
case "$BUILD_API" in
[0-9]|1[0-1]) BUILD_API=9 ;;
20) BUILD_API=19 ;;
22) BUILD_API=21 ;;
[0-9][0-9]) ;;
*) BUILD_API=12 ;;
esac
[ "$BUILD_API" -gt 24 ] && BUILD_API=24
BUILD_ARCHS=${BUILD_ARCHS//,/ }
# Check dependency sources
source_root=$(dirname "${BASH_SOURCE[0]}")
if [ ! -d "$source_root/openssl" ] || [ ! -d "$source_root/sqlcipher" ]; then
echo "Error: Submodule directories don't exist. Try git submodule update --init"
exit 1
fi
# Print build options
cat <<_EOF
NDK root: ${ANDROID_NDK_ROOT}
Build architectures: ${BUILD_ARCHS}
Build API level: ${BUILD_API}
Build PIE: $([ "$BUILD_PIE" == 1 ] && echo 'yes' || echo 'no')
Toolchain: $([ "$USE_CLANG" == 1 ] && echo 'clang' || echo 'GCC')
_EOF
# Save current directory
pushd "$source_root" >/dev/null 2>&1
# Determine position-independent executable flags
[ "$BUILD_PIE" == 1 ] && android_pie='-fPIE -pie' || android_pie=
# Patch OpenSSL
cat patch/openssl/*.patch | patch -p1 -R -dopenssl --dry-run > /dev/null
if [ $? != 0 ]; then
cat patch/openssl/*.patch | patch -p1 -N -dopenssl || exit 1
fi
# Generate sqlite3.c/.h
cd sqlcipher
if [ 'Makefile' -ot 'Makefile.in' ] || [ 'Makefile' -ot 'configure' ]; then
./configure $SQLCIPHER_CONFIG || exit 1
fi
make sqlite3.h sqlite3.c || exit 1
cp sqlite3.h sqlite3.c sqlite3ext.h sqlite3session.h src/sqlcipher.h ../android/sqlcipher/ || exit 1
cd ..
for android_arch in $BUILD_ARCHS; do
echo "###########################################"
echo "# Building for architecture: $android_arch "
echo "###########################################"
# Setup current architecture
case "$android_arch" in
arm)
android_eabi=arm-linux-androideabi
gcc_prefix=arm-linux-androideabi
clang_target=arm-none-linux-androideabi
android_api=9
android_cflags="-Os -fpic -mthumb -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16"
openssl_conf="linux-armv4"
;;
arm64)
android_eabi=aarch64-linux-android
gcc_prefix=aarch64-linux-android
clang_target=aarch64-none-linux-android
android_api=21
android_cflags="-O2 -fpic"
openssl_conf="linux-aarch64"
;;
x86)
android_eabi=x86
gcc_prefix=i686-linux-android
clang_target=i686-none-linux-android
android_api=9
android_cflags="-O2 -fPIC"
openssl_conf="linux-elf"
;;
*)
echo "Unsupported architecture: $android_arch"
exit 1
;;
esac
[ "$BUILD_API" -gt "$android_api" ] && android_api="$BUILD_API"
android_sysroot="$ANDROID_NDK_ROOT/platforms/android-$android_api/arch-$android_arch"
android_cc="$gcc_prefix-gcc --sysroot=$android_sysroot"
android_cflags="$android_cflags -g -Wall -funwind-tables -fstack-protector -fomit-frame-pointer -DNDEBUG -DANDROID"
android_path="$ANDROID_NDK_ROOT/toolchains/$android_eabi-4.9/prebuilt/$ndk_host/bin"
android_prefix="$(pwd)/android/prebuilt/$android_arch"
if [ "$USE_CLANG" == 1 ]; then
android_cc="clang -target $clang_target -gcc-toolchain $ANDROID_NDK_ROOT/toolchains/$android_eabi-4.9/prebuilt/$ndk_host --sysroot=$android_sysroot"
android_cflags="-fno-integrated-as $android_cflags"
android_path="$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/$ndk_host/bin:$android_path"
fi
# Export Android toolchain to PATH
original_path="$PATH"
export PATH="$android_path":"$PATH"
# Build and install libcrypto
if [ "$BUILD_CRYPTO" == 1 ]; then
cd openssl
[ -f 'Makefile' ] && make clean
CC="$android_cc" \
AR="$gcc_prefix-ar" \
RANLIB="$gcc_prefix-ranlib" \
./Configure $openssl_conf $android_cflags $OPENSSL_CONFIG \
--openssldir="$android_prefix" || exit 1
# Edit generated Makefile
sed -i -e '/^CFLAG=/ s/ \+-O[0-3s] \+/ /2g' \
-e '/^MAKEDEPPROG=/ s/^MAKEDEPPROG=.*$/MAKEDEPPROG=$(CC)/' \
-e '/^DIRS=/ s/^DIRS=.*$/DIRS= crypto/' \
Makefile
make depend -j2 || exit 1
make build_crypto libcrypto.pc libssl.pc openssl.pc -j2 || exit 1
make install_sw || exit 1
make clean dclean || exit 1
cd ..
fi
# Build and install sqlcipher
if [ "$BUILD_SQLCIPHER" == 1 ]; then
cd sqlcipher
[ -f 'Makefile' ] && make distclean
CC="$android_cc" \
CFLAGS="-I$android_prefix/include $android_cflags $SQLCIPHER_CFLAGS" \
LDFLAGS="-L$android_prefix/lib $SQLCIPHER_LDFLAGS $android_pie" \
./configure --host="$gcc_prefix" --prefix="$android_prefix" $SQLCIPHER_CONFIG || exit 1
make all install || exit 1
cp sqlite3.c "$android_prefix/sqlite3.c"
make distclean || exit 1
cd ..
fi
# Recover original PATH
export PATH="$original_path"
done
# Recover saved directory
popd >/dev/null 2>&1
exit 0