From 1203774d52e976be4a054f44f1c69a320540220a Mon Sep 17 00:00:00 2001 From: Brad King Date: Sat, 17 May 2008 17:35:35 -0400 Subject: [PATCH] ENH: Add basic flags for Portland Group fortran compiler. --- Modules/Platform/Linux-PGI-Fortran.cmake | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Modules/Platform/Linux-PGI-Fortran.cmake b/Modules/Platform/Linux-PGI-Fortran.cmake index a26e680a4..7c99e793e 100644 --- a/Modules/Platform/Linux-PGI-Fortran.cmake +++ b/Modules/Platform/Linux-PGI-Fortran.cmake @@ -1 +1,9 @@ SET(CMAKE_SHARED_LIBRARY_LINK_Fortran_FLAGS "") + +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") +