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 /Modules/CMakeASMCompiler.cmake.in | |
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 'Modules/CMakeASMCompiler.cmake.in')
-rw-r--r-- | Modules/CMakeASMCompiler.cmake.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/CMakeASMCompiler.cmake.in b/Modules/CMakeASMCompiler.cmake.in index ad65698..7b94d0f 100644 --- a/Modules/CMakeASMCompiler.cmake.in +++ b/Modules/CMakeASMCompiler.cmake.in @@ -1,9 +1,9 @@ set(CMAKE_ASM@ASM_DIALECT@_COMPILER "@_CMAKE_ASM_COMPILER@") set(CMAKE_ASM@ASM_DIALECT@_COMPILER_ARG1 "@_CMAKE_ASM_COMPILER_ARG1@") set(CMAKE_AR "@CMAKE_AR@") -set(CMAKE_GCC_AR "@CMAKE_GCC_AR@") +set(CMAKE_ASM@ASM_DIALECT@_COMPILER_AR "@_CMAKE_ASM_COMPILER_AR@") set(CMAKE_RANLIB "@CMAKE_RANLIB@") -set(CMAKE_GCC_RANLIB "@CMAKE_GCC_RANLIB@") +set(CMAKE_ASM@ASM_DIALECT@_COMPILER_RANLIB "@_CMAKE_ASM_COMPILER_RANLIB@") set(CMAKE_LINKER "@CMAKE_LINKER@") set(CMAKE_ASM@ASM_DIALECT@_COMPILER_LOADED 1) set(CMAKE_ASM@ASM_DIALECT@_COMPILER_ID "@_CMAKE_ASM_COMPILER_ID@") |