aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2019-12-04 17:51:22 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-12-05 10:15:21 +0000
commit25a6b67cd8188e5a968c0c89adf99f874c7eecb4 (patch)
tree80bf364f47122d3e51e030bd47abe8ece681e426 /docs
parentcc4815f10bf2253646fba9f0e1c336a5c36e8dfd (diff)
downloadComputeLibrary-25a6b67cd8188e5a968c0c89adf99f874c7eecb4.tar.gz
COMPMID-2970: Update suggested android toolchain to 17c.
Change-Id: Id283f9f486560be10028111e1c0613fd67b97c5c Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-on: https://review.mlplatform.org/c/2416 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/00_introduction.dox12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/00_introduction.dox b/docs/00_introduction.dox
index b337d407d5..ece9711d8d 100644
--- a/docs/00_introduction.dox
+++ b/docs/00_introduction.dox
@@ -1227,25 +1227,25 @@ Below is a list of the common parameters among the graph examples :
@subsection S3_3_android Building for Android
For Android, the library was successfully built and tested using Google's standalone toolchains:
- - clang++ from NDK r17b for armv7a
- - clang++ from NDK r17b for arm64-v8a
+ - clang++ from NDK r17c for armv7a
+ - clang++ from NDK r17c for arm64-v8a
- clang++ from NDK r18-beta1 for arm64-v8.2-a with FP16 support
Here is a guide to <a href="https://developer.android.com/ndk/guides/standalone_toolchain.html">create your Android standalone toolchains from the NDK</a>
-- Download the NDK r17b from here: https://developer.android.com/ndk/downloads/index.html
+- Download the NDK r17c from here: https://developer.android.com/ndk/downloads/index.html
- Make sure you have Python 2.7 installed on your machine.
- Generate the 32 and/or 64 toolchains by running the following commands:
- $NDK/build/tools/make_standalone_toolchain.py --arch arm64 --install-dir $MY_TOOLCHAINS/aarch64-linux-android-ndk-r17b --stl libc++ --api 21
- $NDK/build/tools/make_standalone_toolchain.py --arch arm --install-dir $MY_TOOLCHAINS/arm-linux-android-ndk-r17b --stl libc++ --api 21
+ $NDK/build/tools/make_standalone_toolchain.py --arch arm64 --install-dir $MY_TOOLCHAINS/aarch64-linux-android-ndk-r17c --stl libc++ --api 21
+ $NDK/build/tools/make_standalone_toolchain.py --arch arm --install-dir $MY_TOOLCHAINS/arm-linux-android-ndk-r17c --stl libc++ --api 21
@attention We used to use gnustl but as of NDK r17 it is deprecated so we switched to libc++
@note Make sure to add the toolchains to your PATH:
- export PATH=$PATH:$MY_TOOLCHAINS/aarch64-linux-android-ndk-r17b/bin:$MY_TOOLCHAINS/arm-linux-android-ndk-r17b/bin
+ export PATH=$PATH:$MY_TOOLCHAINS/aarch64-linux-android-ndk-r17c/bin:$MY_TOOLCHAINS/arm-linux-android-ndk-r17c/bin
@subsubsection S3_3_1_library How to build the library ?