diff options
author | Ruslan Baratov <ruslan_baratov@yahoo.com> | 2017-04-02 14:29:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-04-03 18:10:50 (GMT) |
commit | 73934188446d2f8b149d5458008e1b267b37c3d9 (patch) | |
tree | bc3b6132bb39966d789b92d3f75cd10ba4f29d02 /Help/release | |
parent | b2feb958ac29d37bfba419043250939c90d36dca (diff) | |
download | CMake-73934188446d2f8b149d5458008e1b267b37c3d9.zip CMake-73934188446d2f8b149d5458008e1b267b37c3d9.tar.gz CMake-73934188446d2f8b149d5458008e1b267b37c3d9.tar.bz2 |
Rename CMAKE_GCC_{AR,RANLIB} to CMAKE_LANG_COMPILER_{AR,RANLIB}
The variables recently added by commit b9d36826 (Add 'CMAKE_GCC_AR' and
'CMAKE_GCC_RANLIB' variables, 2017-03-08) are more appropriately managed
with language-specific names rather than toolchain-specific names.
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/dev/compiler_archiving_tools.rst | 8 | ||||
-rw-r--r-- | Help/release/dev/gcc_archiving_tools.rst | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Help/release/dev/compiler_archiving_tools.rst b/Help/release/dev/compiler_archiving_tools.rst new file mode 100644 index 0000000..de3471d --- /dev/null +++ b/Help/release/dev/compiler_archiving_tools.rst @@ -0,0 +1,8 @@ +compiler_archiving_tools +------------------------ + +* A :variable:`CMAKE_<LANG>_COMPILER_AR` variable was added to hold + the path to the GCC/Clang wrapper of ``ar``. + +* A :variable:`CMAKE_<LANG>_COMPILER_RANLIB` variable was added to hold + the path to the GCC/Clang wrapper of ``ranlib``. diff --git a/Help/release/dev/gcc_archiving_tools.rst b/Help/release/dev/gcc_archiving_tools.rst deleted file mode 100644 index b3cc7d6..0000000 --- a/Help/release/dev/gcc_archiving_tools.rst +++ /dev/null @@ -1,8 +0,0 @@ -gcc_archiving_tools -------------------- - -* The :variable:`CMAKE_GCC_AR` variable with the path to GCC wrapper of ``ar`` - utility was added. - -* The :variable:`CMAKE_GCC_RANLIB` variable with the path to GCC wrapper of - ``ranlib`` utility was added. |