aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlwin Esch <alwin.esch@web.de>2020-02-17 23:05:31 +0100
committerAlwin Esch <alwin.esch@web.de>2020-02-17 23:05:31 +0100
commitfda4184fccfa2df1d46924c250407b6e03e8ab65 (patch)
treef7cb3559937175a7144d3bd6b8b1949b56f981ff /docs
parent05d5568796f01bfb8f88d2b135c22203629f80f8 (diff)
[build][depends] add support for x86_64-linux-android
Previously, only an "i686-linux-android" was used which actually only corresponds to the 32bit CPU. In reference to this https://developer.android.com/ndk/guides/other_build_systems at 64bit "x86_64-linux-android" is used.
Diffstat (limited to 'docs')
-rw-r--r--docs/README.Android.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/README.Android.md b/docs/README.Android.md
index 0a85d64476..847db7ef28 100644
--- a/docs/README.Android.md
+++ b/docs/README.Android.md
@@ -151,6 +151,11 @@ Or configure build for x86:
./configure --with-tarballs=$HOME/android-tools/xbmc-tarballs --host=i686-linux-android --with-sdk-path=$HOME/android-tools/android-sdk-linux --with-ndk-path=$HOME/android-tools/android-ndk-r20 --prefix=$HOME/android-tools/xbmc-depends
```
+Or configure build for x86_64:
+```
+./configure --with-tarballs=$HOME/android-tools/xbmc-tarballs --host=x86_64-linux-android --with-sdk-path=$HOME/android-tools/android-sdk-linux --with-ndk-path=$HOME/android-tools/android-ndk-r20 --prefix=$HOME/android-tools/xbmc-depends
+```
+
Build tools and dependencies:
```
make -j$(getconf _NPROCESSORS_ONLN)