mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 04:57:38 +03:00
android: Build and link with zlib
Previously, we linked with zlib shipped with NDK, but it seems this is not part of NDK API, and thus could break our app.
This commit is contained in:
parent
eb9dafc247
commit
fb720b3077
3 changed files with 24 additions and 10 deletions
22
android/zlib-config
Executable file
22
android/zlib-config
Executable file
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
if [ -z "$ANDROID_HOME" ]; then
|
||||
echo 'No $ANDROID_HOME specified.'
|
||||
exit 1
|
||||
fi
|
||||
PREFIX=$ANDROID_HOME/usr/local
|
||||
TOOLCHAIN=$ANDROID_HOME/toolchain
|
||||
PATH=$TOOLCHAIN/bin:$PATH
|
||||
|
||||
HOST=arm-linux-androideabi
|
||||
|
||||
CC=$HOST-gcc \
|
||||
AR=$HOST-ar \
|
||||
LD=$HOST-ld \
|
||||
RANLIB=$HOST-ranlib \
|
||||
STRIP=$HOST-strip \
|
||||
./configure \
|
||||
--prefix=$PREFIX \
|
||||
--libdir=$PREFIX/lib \
|
||||
--includedir=$PREFIX/include \
|
||||
--static
|
Loading…
Add table
Add a link
Reference in a new issue