Update README.rst

pull/128/merge
Tatsuhiro Tsujikawa 2013-09-18 23:28:17 +09:00
parent e3a41a51da
commit c6eb970173
1 changed files with 5 additions and 2 deletions

View File

@ -296,6 +296,9 @@ Cross-compiling Android binary
In this section, we describe how to build Android binary using Android In this section, we describe how to build Android binary using Android
NDK cross-compiler on Debian Linux. NDK cross-compiler on Debian Linux.
At the time of this writing, android-ndk-r9 should compile aria2
without errors.
``android-config`` script is a configure script wrapper for Android ``android-config`` script is a configure script wrapper for Android
build. We use it to create official Android build. This script build. We use it to create official Android build. This script
assumes the following libraries have been built for cross-compile: assumes the following libraries have been built for cross-compile:
@ -315,14 +318,14 @@ by ourselves.
environment variable which must fulfill the following conditions: environment variable which must fulfill the following conditions:
* Android NDK toolchain is installed under * Android NDK toolchain is installed under
``$ANDROID_HOME/toolchain``. Refer to "3/ Invoking the compiler ``$ANDROID_HOME/toolchain``. Refer to "4/ Invoking the compiler
(the easy way):" section in Android NDK (the easy way):" section in Android NDK
``docs/STANDALONE-TOOLCHAIN.html`` to install custom toolchain. ``docs/STANDALONE-TOOLCHAIN.html`` to install custom toolchain.
For example, to install toolchain under ``$ANDROID_HOME/toolchain``, For example, to install toolchain under ``$ANDROID_HOME/toolchain``,
do this:: do this::
$NDK/build/tools/make-standalone-toolchain.sh --platform=android-9 --install-dir=$ANDROID_HOME/toolchain $NDK/build/tools/make-standalone-toolchain.sh --platform=android-18 --toolchain=arm-linux-androideabi-4.8 --install-dir=$ANDROID_HOME/toolchain
You may need to add ``--system=linux-x86_64`` to the above You may need to add ``--system=linux-x86_64`` to the above
command-line for x86_64 Linux host. command-line for x86_64 Linux host.