aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Koying Browet <cbro@semperpax.com>2017-12-22 11:00:00 +0100
committerRechi <Rechi@users.noreply.github.com>2017-12-22 11:00:00 +0100
commitd32bd6656f0d7b2b77304d60202142ea278dfd3e (patch)
treee19d4e36154f0c8baf3c1791c278c6f796f28731 /docs
parentd2ebc59772a77fcc14392788c653d3b35b3a68ad (diff)
CHG: [droid] switch to clang & libc++
Diffstat (limited to 'docs')
-rw-r--r--docs/README.android6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/README.android b/docs/README.android
index 326c9c8631..0eb32bd75d 100644
--- a/docs/README.android
+++ b/docs/README.android
@@ -153,7 +153,7 @@ Building for arm architecture:
$ cd build/tools
$ ./make-standalone-toolchain.sh \
--install-dir=<android-toolchain-arm>/android-21 --platform=android-21 \
- --toolchain=arm-linux-androideabi-4.9
+ --toolchain=arm-linux-androideabi-4.9 --stl=libc++
Building for aarch64 architecture:
@@ -162,7 +162,7 @@ Building for aarch64 architecture:
$ cd build/tools
$ ./make-standalone-toolchain.sh \
--install-dir=<android-toolchain-aarch64>/android-21 --platform=android-21 \
- --toolchain=aarch64-linux-android-4.9
+ --toolchain=aarch64-linux-android-4.9 --stl=libc++
Building for x86 architecture:
@@ -171,7 +171,7 @@ Building for x86 architecture:
$ cd build/tools
$ ./make-standalone-toolchain.sh \
--install-dir=<android-toolchain-x86>/android-21 --platform=android-21 \
- --toolchain=x86-4.9 --arch=x86
+ --toolchain=x86-4.9 --arch=x86 --stl=libc++
Make sure to pick a toolchain for your desired architecture. If an error about
the used system is shown - please add proper --system parameter as mentioned