diff options
author | Brad King <brad.king@kitware.com> | 2011-01-21 18:09:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-05-20 12:53:36 (GMT) |
commit | ac5b999fffc88a1db3d4558e2dd6fd104cf2258a (patch) | |
tree | 917688f127afb619c7f1c3fa604db135e508cf40 /Modules/CMakeFortranCompilerId.F.in | |
parent | 73827b92059a3548406c35978d3ec05a456aced4 (diff) | |
download | CMake-ac5b999fffc88a1db3d4558e2dd6fd104cf2258a.zip CMake-ac5b999fffc88a1db3d4558e2dd6fd104cf2258a.tar.gz CMake-ac5b999fffc88a1db3d4558e2dd6fd104cf2258a.tar.bz2 |
Add Absoft Fortran compiler id and basic flags
Identification at preprocessing time depends on definition of __ABSOFT__
to be added in service pack V11.1.2 of the compiler.
Diffstat (limited to 'Modules/CMakeFortranCompilerId.F.in')
-rw-r--r-- | Modules/CMakeFortranCompilerId.F.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/CMakeFortranCompilerId.F.in b/Modules/CMakeFortranCompilerId.F.in index 8584731..4d25de0 100644 --- a/Modules/CMakeFortranCompilerId.F.in +++ b/Modules/CMakeFortranCompilerId.F.in @@ -12,6 +12,8 @@ PRINT *, 'INFO:compiler[G95]' #elif defined(__PATHSCALE__) PRINT *, 'INFO:compiler[PathScale]' +#elif defined(__ABSOFT__) + PRINT *, 'INFO:compiler[Absoft]' #elif defined(__GNUC__) PRINT *, 'INFO:compiler[GNU]' #elif defined(__IBMC__) |