diff options
author | Brad King <brad.king@kitware.com> | 2015-02-17 18:30:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-02-19 14:26:28 (GMT) |
commit | 302d47b1fe19fb794800faa548d4cb9a8e89220a (patch) | |
tree | 0760b4ce154701c80625120a040df9d8baee2a1d /Modules/CMakeFortranCompilerId.F.in | |
parent | 8c8b77a5dede8d1ad3110124b93973db8d879d79 (diff) | |
download | CMake-302d47b1fe19fb794800faa548d4cb9a8e89220a.zip CMake-302d47b1fe19fb794800faa548d4cb9a8e89220a.tar.gz CMake-302d47b1fe19fb794800faa548d4cb9a8e89220a.tar.bz2 |
Fortran: Detect XL and VisualAge compiler versions
Port logic from the "Compiler/XL-*-DetermineCompiler" and
"Compiler/VisualAge-*-DetermineCompiler" modules into
"CMakeFortranCompilerId.F.in".
Diffstat (limited to 'Modules/CMakeFortranCompilerId.F.in')
-rw-r--r-- | Modules/CMakeFortranCompilerId.F.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/CMakeFortranCompilerId.F.in b/Modules/CMakeFortranCompilerId.F.in index 14ce395..4c172a8 100644 --- a/Modules/CMakeFortranCompilerId.F.in +++ b/Modules/CMakeFortranCompilerId.F.in @@ -68,8 +68,14 @@ PRINT *, 'INFO:compiler[zOS]' # elif __IBMC__ >= 800 PRINT *, 'INFO:compiler[XL]' +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) # else PRINT *, 'INFO:compiler[VisualAge]' +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) # endif #elif defined(__PGI) PRINT *, 'INFO:compiler[PGI]' |