mirror of
https://github.com/reactos/CMake.git
synced 2024-11-30 23:10:26 +00:00
6b84df8da9
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.
|