mirror of
https://github.com/reactos/CMake.git
synced 2025-02-12 23:19:13 +00:00
![Brad King](/assets/img/avatar_default.png)
CMake now supports cross compiling for Android using the NDK or a standalone toolchain. Document the associated variables and how how to write toolchain files for Android.
18 lines
387 B
ReStructuredText
18 lines
387 B
ReStructuredText
CMAKE_ANDROID_ARCH_ABI
|
|
----------------------
|
|
|
|
When :ref:`Cross Compiling for Android`, this variable specifies the
|
|
target architecture and ABI to be used. Valid values are:
|
|
|
|
* ``arm64-v8a``
|
|
* ``armeabi-v7a``
|
|
* ``armeabi-v6``
|
|
* ``armeabi``
|
|
* ``mips``
|
|
* ``mips64``
|
|
* ``x86``
|
|
* ``x86_64``
|
|
|
|
See also the :variable:`CMAKE_ANDROID_ARM_MODE` and
|
|
:variable:`CMAKE_ANDROID_ARM_NEON` variables.
|