diff options
author | Brad King <brad.king@kitware.com> | 2009-12-04 15:21:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-12-04 15:21:57 (GMT) |
commit | c106cb2e2fcae39c29405c288c1858959504516d (patch) | |
tree | 22015ca77aa9ca7e503cb31165e3459a8ea7453f /Modules/Platform/Linux-PGI-Fortran.cmake | |
parent | 2d948e94bfd542cd89f641d765ea46bc6fa3e46b (diff) | |
download | CMake-c106cb2e2fcae39c29405c288c1858959504516d.zip CMake-c106cb2e2fcae39c29405c288c1858959504516d.tar.gz CMake-c106cb2e2fcae39c29405c288c1858959504516d.tar.bz2 |
Generalize support for Portland Group Compiler
We factor flags from Platform/Linux-PGI-Fortran.cmake into language
independent helper modules
Compiler/PGI.cmake
Platform/Linux-PGI.cmake
and invoke the macros from
Compiler/PGI-<lang>.cmake
Platform/Linux-PGI-<lang>.cmake
This enables general support for the PGI compilers.
Diffstat (limited to 'Modules/Platform/Linux-PGI-Fortran.cmake')
-rw-r--r-- | Modules/Platform/Linux-PGI-Fortran.cmake | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Modules/Platform/Linux-PGI-Fortran.cmake b/Modules/Platform/Linux-PGI-Fortran.cmake index 7a2e006..e8731a3 100644 --- a/Modules/Platform/Linux-PGI-Fortran.cmake +++ b/Modules/Platform/Linux-PGI-Fortran.cmake @@ -1,7 +1,2 @@ -SET(CMAKE_Fortran_MODDIR_FLAG "-module ") -SET(CMAKE_Fortran_FLAGS_INIT "-Mpreprocess -Kieee -fpic") -SET(CMAKE_Fortran_FLAGS_DEBUG_INIT "-g -O0 -Mbounds") -SET(CMAKE_Fortran_FLAGS_MINSIZEREL_INIT "-O2 -s") -SET(CMAKE_Fortran_FLAGS_RELEASE_INIT "-fast -O3 -Mipa=fast") -SET(CMAKE_Fortran_FLAGS_RELWITHDEBINFO_INIT "-O2 -gopt") - +include(Platform/Linux-PGI) +__linux_compiler_pgi(Fortran) |