https://github.com/Kitware/CMake
Raw File
Tip revision: b61fe6a831c72050c3a4f830445f98696b0cedf7 authored by Brad King on 14 June 2021, 15:05:49 UTC
CMake 3.20.4
Tip revision: b61fe6a
CMAKE_LANG_ANDROID_TOOLCHAIN_PREFIX.rst
CMAKE_<LANG>_ANDROID_TOOLCHAIN_PREFIX
-------------------------------------

.. versionadded:: 3.7

When :ref:`Cross Compiling for Android` this variable contains the absolute
path prefixing the toolchain GNU compiler and its binutils.

See also :variable:`CMAKE_<LANG>_ANDROID_TOOLCHAIN_SUFFIX`
and :variable:`CMAKE_<LANG>_ANDROID_TOOLCHAIN_MACHINE`.

For example, the path to the linker is::

  ${CMAKE_CXX_ANDROID_TOOLCHAIN_PREFIX}ld${CMAKE_CXX_ANDROID_TOOLCHAIN_SUFFIX}
back to top