diff options
author | Chuck Atkins <chuck.atkins@kitware.com> | 2020-12-22 21:11:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-03-31 13:14:45 (GMT) |
commit | 27579e9cf12a9994fc15ff9e5487f73cc0406428 (patch) | |
tree | 547baebe2c46fbb4ef8ce37ebb65a2fc834b623b /Modules/CMakePlatformId.h.in | |
parent | a55feff69c7967d56e0935d841cf1ea2c980a43a (diff) | |
download | CMake-27579e9cf12a9994fc15ff9e5487f73cc0406428.zip CMake-27579e9cf12a9994fc15ff9e5487f73cc0406428.tar.gz CMake-27579e9cf12a9994fc15ff9e5487f73cc0406428.tar.bz2 |
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/CMakePlatformId.h.in')
-rw-r--r-- | Modules/CMakePlatformId.h.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/CMakePlatformId.h.in b/Modules/CMakePlatformId.h.in index 3ae9f49..2643874 100644 --- a/Modules/CMakePlatformId.h.in +++ b/Modules/CMakePlatformId.h.in @@ -285,6 +285,8 @@ char const info_version_internal[] = { 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', 'i','n','t','e','r','n','a','l','[', COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; #endif /* Construct a string literal encoding the version number components. */ |