Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/development/build-android.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,14 @@ Create a standalone toolchain (this simplifies setting up the build environment)

````bash
android-ndk-r14/build/tools/make_standalone_toolchain.py \
--arch arm --api 17 --stl libc++ \
--arch arm --api 9 \
--install-dir ${HOME}/android/toolchain/standalone
````

**Note:** We currently use NDK API 9 for building the LiveCode Android engine and
do not specify the '--stl' option as we currently require the C++ library (if used)
to be statically linked into the executable.

Add a couple of symlinks to allow the engine configuration script to find the Android toolchain:

````bash
Expand Down