diff options
author | TGRCDev <tiger@caldwellfive.com> | 2019-08-21 01:03:49 -0700 |
---|---|---|
committer | TGRCDev <tiger@tgrc.dev> | 2019-09-18 11:01:54 -0700 |
commit | 7482074779722df2b704e28ef352dd7bf80cc448 (patch) | |
tree | d781a358bf2af2f0ae01e6ab71d5d2ed2b7ec774 /README.md | |
parent | 77cde5bb3acc79309454f65a28f5933564cc03fd (diff) | |
download | redot-cpp-7482074779722df2b704e28ef352dd7bf80cc448.tar.gz |
Android compile fixed for Windows
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -77,12 +77,12 @@ $ scons platform=<your platform> generate_bindings=yes $ cd .. ``` For android: -Download latest Android NDK from official website and set NDK path. +Download the latest [Android NDK](https://developer.android.com/ndk/downloads) from the official website and set NDK path. ``` -$ export PATH="$PATH:/PATH-TO-ANDROID-NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/" -$ scons platform=android generate_bindings=yes +$ scons platform=android generate_bindings=yes ANDROID_NDK_ROOT="/PATH-TO-ANDROID-NDK/" android_arch=< > ``` -you can also specify architecture by enabling bits=64 (or 32) default is 64 +`android_arch` can be `armv7, arm64v8, x86, x86_64`. +`ANDROID_NDK_ROOT` can also be set in the environment variables of your computer if you do not want to include it in your Scons call. > Replace `<your platform>` with either `windows`, `linux`, `osx` or `android`. |