diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2018-04-01 20:49:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-04-18 11:41:25 (GMT) |
commit | 84f9f63fccdadb9b8a0bdb3260a0c7a3f71cb251 (patch) | |
tree | 4d6c64b716b05473680d84c01f1c7178163595f5 /Modules/CMakeLanguageInformation.cmake | |
parent | 9fa0f2eb5638b5863c573c0ef1922d4cb2c729d5 (diff) | |
download | CMake-84f9f63fccdadb9b8a0bdb3260a0c7a3f71cb251.zip CMake-84f9f63fccdadb9b8a0bdb3260a0c7a3f71cb251.tar.gz CMake-84f9f63fccdadb9b8a0bdb3260a0c7a3f71cb251.tar.bz2 |
Modules: Introduce CMAKE_EFFECTIVE_SYSTEM_NAME to lookup compiler info
Create a `CMAKE_EFFECTIVE_SYSTEM_NAME` variable to use for looking
up compiler information modules instead of using `CMAKE_SYSTEM_NAME`
directly. This will allow multiple platforms to share the same set
of compiler information modules without spelling out all of them.
Issue: #17870
Diffstat (limited to 'Modules/CMakeLanguageInformation.cmake')
-rw-r--r-- | Modules/CMakeLanguageInformation.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/CMakeLanguageInformation.cmake b/Modules/CMakeLanguageInformation.cmake index 18c8624..674ab86 100644 --- a/Modules/CMakeLanguageInformation.cmake +++ b/Modules/CMakeLanguageInformation.cmake @@ -9,10 +9,10 @@ macro(__cmake_include_compiler_wrapper lang) set(_INCLUDED_WRAPPER_FILE 0) if (CMAKE_${lang}_COMPILER_ID) - include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_${lang}_COMPILER_WRAPPER}-${CMAKE_${lang}_COMPILER_ID}-${lang} OPTIONAL RESULT_VARIABLE _INCLUDED_WRAPPER_FILE) + include(Platform/${CMAKE_EFFECTIVE_SYSTEM_NAME}-${CMAKE_${lang}_COMPILER_WRAPPER}-${CMAKE_${lang}_COMPILER_ID}-${lang} OPTIONAL RESULT_VARIABLE _INCLUDED_WRAPPER_FILE) endif() if (NOT _INCLUDED_WRAPPER_FILE) - include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_${lang}_COMPILER_WRAPPER}-${lang} OPTIONAL RESULT_VARIABLE _INCLUDED_WRAPPER_FILE) + include(Platform/${CMAKE_EFFECTIVE_SYSTEM_NAME}-${CMAKE_${lang}_COMPILER_WRAPPER}-${lang} OPTIONAL RESULT_VARIABLE _INCLUDED_WRAPPER_FILE) endif () # No platform - wrapper - lang information so maybe there's just wrapper - lang information |