summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeDetermineCCompiler.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-11-28 12:50:15 (GMT)
committerBrad King <brad.king@kitware.com>2017-11-28 12:57:58 (GMT)
commitacb4cb950023be9300699a0220715bebb50306ad (patch)
tree0632a156bc8bdfa03d75d81b7fbda4019096bcb1 /Modules/CMakeDetermineCCompiler.cmake
parent65f21a7eadc2144f0c85cd883cf63a6eb7681528 (diff)
downloadCMake-acb4cb950023be9300699a0220715bebb50306ad.zip
CMake-acb4cb950023be9300699a0220715bebb50306ad.tar.gz
CMake-acb4cb950023be9300699a0220715bebb50306ad.tar.bz2
CMakeFindBinUtils: Improve switch between MSVC- and GNU-like tools
The switch was not considering some languages, such as `ASM`. Instead of memorizing the list of languages in the condition, use a language specified by the includer. Fixes: #17510
Diffstat (limited to 'Modules/CMakeDetermineCCompiler.cmake')
-rw-r--r--Modules/CMakeDetermineCCompiler.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeDetermineCCompiler.cmake b/Modules/CMakeDetermineCCompiler.cmake
index 4e56ce1..7e6ca1e 100644
--- a/Modules/CMakeDetermineCCompiler.cmake
+++ b/Modules/CMakeDetermineCCompiler.cmake
@@ -166,8 +166,8 @@ if (CMAKE_CROSSCOMPILING AND NOT _CMAKE_TOOLCHAIN_PREFIX)
endif ()
-include(CMakeFindBinUtils)
set(_CMAKE_PROCESSING_LANGUAGE "C")
+include(CMakeFindBinUtils)
include(Compiler/${CMAKE_C_COMPILER_ID}-FindBinUtils OPTIONAL)
unset(_CMAKE_PROCESSING_LANGUAGE)