summaryrefslogtreecommitdiff
path: root/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
diff options
context:
space:
mode:
authorChuck Atkins <chuck.atkins@kitware.com>2020-12-22 14:11:34 -0700
committerBrad King <brad.king@kitware.com>2021-03-31 09:14:45 -0400
commit27579e9cf12a9994fc15ff9e5487f73cc0406428 (patch)
tree547baebe2c46fbb4ef8ce37ebb65a2fc834b623b /Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
parenta55feff69c7967d56e0935d841cf1ea2c980a43a (diff)
downloadcmake-27579e9cf12a9994fc15ff9e5487f73cc0406428.tar.gz
FujitsuClang: Add support for the Fujitsu compiler in Clang mode
This should be front end compatible with vanilla clang but giving it a unique identifier allows a project to pass additional options unique to Fujitsu and outside the scope of a CMake builtin.
Diffstat (limited to 'Modules/Compiler/FujitsuClang-DetermineCompiler.cmake')
-rw-r--r--Modules/Compiler/FujitsuClang-DetermineCompiler.cmake9
1 files changed, 9 insertions, 0 deletions
diff --git a/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake b/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
new file mode 100644
index 0000000000..f6719b1b54
--- /dev/null
+++ b/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
@@ -0,0 +1,9 @@
+
+set(_compiler_id_pp_test "defined(__CLANG_FUJITSU)")
+
+set(_compiler_id_version_compute "
+# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__FCC_major__)
+# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__FCC_minor__)
+# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__FCC_patchlevel__)
+# define @PREFIX@COMPILER_VERSION_INTERNAL_STR __clang_version__
+")