diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2017-01-27 15:49:45 (GMT) |
---|---|---|
committer | Rolf Eike Beer <eike@sf-mail.de> | 2017-02-02 17:28:56 (GMT) |
commit | 94a8ee6fd0ba487437579bb224500b9f46c2819c (patch) | |
tree | 56f87cc596695caf84cc209ec45ba3ca80f2fb1c /Help | |
parent | 940bf6a4a427c8edfd975bf078a3ea331847f72a (diff) | |
download | CMake-94a8ee6fd0ba487437579bb224500b9f46c2819c.zip CMake-94a8ee6fd0ba487437579bb224500b9f46c2819c.tar.gz CMake-94a8ee6fd0ba487437579bb224500b9f46c2819c.tar.bz2 |
GNU C: record that C99 is available since at least 3.4
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-compile-features.7.rst | 8 | ||||
-rw-r--r-- | Help/release/dev/gcc-features.rst | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/Help/manual/cmake-compile-features.7.rst b/Help/manual/cmake-compile-features.7.rst index 4f48ad9..448fe9a 100644 --- a/Help/manual/cmake-compile-features.7.rst +++ b/Help/manual/cmake-compile-features.7.rst @@ -338,6 +338,14 @@ versions specified for each: * ``SunPro``: Oracle SolarisStudio version 12.4. * ``Intel``: Intel compiler versions 12.1 through 17.0. +CMake is currently aware of the :prop_tgt:`C standards <C_STANDARD>` +and :prop_gbl:`compile features <CMAKE_C_KNOWN_FEATURES>` available from +the following :variable:`compiler ids <CMAKE_<LANG>_COMPILER_ID>` as of the +versions specified for each: + +* all compilers and versions listed above for C++ +* ``GNU``: GNU compiler versions 3.4 through 5.0. + CMake is currently aware of the :prop_tgt:`CUDA standards <CUDA_STANDARD>` from the following :variable:`compiler ids <CMAKE_<LANG>_COMPILER_ID>` as of the versions specified for each: diff --git a/Help/release/dev/gcc-features.rst b/Help/release/dev/gcc-features.rst new file mode 100644 index 0000000..c6959ab --- /dev/null +++ b/Help/release/dev/gcc-features.rst @@ -0,0 +1,5 @@ +gcc-features +------------ + +* The :manual:`Compile Features <cmake-compile-features(7)>` functionality + is now aware of the availability of C99 in gcc since version 3.4. |