summaryrefslogtreecommitdiffstats
path: root/Help/envvar/CC.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Help/envvar/CC.rst')
-rw-r--r--Help/envvar/CC.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/Help/envvar/CC.rst b/Help/envvar/CC.rst
index ef12059..4c970b4 100644
--- a/Help/envvar/CC.rst
+++ b/Help/envvar/CC.rst
@@ -1,6 +1,8 @@
CC
--
+.. versionadded:: 3.10
+
.. include:: ENV_VAR.txt
Preferred executable for compiling ``C`` language files. Will only be used by
@@ -9,3 +11,11 @@ value for ``CC`` is stored in the cache as
:variable:`CMAKE_C_COMPILER <CMAKE_<LANG>_COMPILER>`. For any configuration run
(including the first), the environment variable will be ignored if the
:variable:`CMAKE_C_COMPILER <CMAKE_<LANG>_COMPILER>` variable is defined.
+
+.. note::
+ Options that are required to make the compiler work correctly can be included;
+ they can not be changed.
+
+.. code-block:: console
+
+ $ export CC="custom-compiler --arg1 --arg2"