mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 02:08:27 +08:00

Covers almost all blocks containing actual code, except: * Parsed-literal blocks can't be highlighted, including many command summaries and substitution-heavy docs like find_... commands. This is a Sphinx limitation. * Code with errors, like CMP0049, DEPLOYMENT_ADDITIONAL_FILES, DEPLOYMENT_REMOTE_DIRECTORY, @PACKAGE_INIT@ substitution in the tutorial, bracket arguments/comments in cmake-language.7 and cmake-developer.7. * FindQt4 module, which needs reformatting.
17 lines
496 B
ReStructuredText
17 lines
496 B
ReStructuredText
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:
|
|
|
|
.. code-block:: cmake
|
|
|
|
${CMAKE_CXX_ANDROID_TOOLCHAIN_PREFIX}ld${CMAKE_CXX_ANDROID_TOOLCHAIN_SUFFIX}
|