summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/CrayClang.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/Compiler/CrayClang.cmake')
-rw-r--r--Modules/Compiler/CrayClang.cmake17
1 files changed, 17 insertions, 0 deletions
diff --git a/Modules/Compiler/CrayClang.cmake b/Modules/Compiler/CrayClang.cmake
new file mode 100644
index 0000000..d2db9dd
--- /dev/null
+++ b/Modules/Compiler/CrayClang.cmake
@@ -0,0 +1,17 @@
+# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
+# file Copyright.txt or https://cmake.org/licensing for details.
+
+# This module is shared by multiple languages; use include blocker.
+if(__COMPILER_CRAYCLANG)
+ return()
+endif()
+set(__COMPILER_CRAYCLANG 1)
+
+include(Compiler/Clang)
+
+macro (__compiler_cray_clang lang)
+ set(__crayclang_ver "${CMAKE_${lang}_COMPILER_VERSION}")
+ set("CMAKE_${lang}_COMPILER_VERSION" "${CMAKE_${lang}_COMPILER_VERSION_INTERNAL}")
+ __compiler_clang(${lang})
+ set("CMAKE_${lang}_COMPILER_VERSION" "${__crayclang_ver}")
+endmacro ()