CC.rst 672 B

123456789101112131415161718192021
  1. CC
  2. --
  3. .. versionadded:: 3.10
  4. .. include:: ENV_VAR.txt
  5. Preferred executable for compiling ``C`` language files. Will only be used by
  6. CMake on the first configuration to determine ``C`` compiler, after which the
  7. value for ``CC`` is stored in the cache as
  8. :variable:`CMAKE_C_COMPILER <CMAKE_<LANG>_COMPILER>`. For any configuration run
  9. (including the first), the environment variable will be ignored if the
  10. :variable:`CMAKE_C_COMPILER <CMAKE_<LANG>_COMPILER>` variable is defined.
  11. .. note::
  12. Options that are required to make the compiler work correctly can be included;
  13. they can not be changed.
  14. .. code-block:: console
  15. $ export CC="custom-compiler --arg1 --arg2"