[Cmake-commits] [cmake-commits] king committed PGI-C.cmake 1.1 1.2 PGI-CXX.cmake 1.1 1.2 PGI-Fortran.cmake 1.1 1.2 PGI.cmake NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Dec 4 10:21:58 EST 2009


Update of /cvsroot/CMake/CMake/Modules/Compiler
In directory public:/mounts/ram/cvs-serv24709/Modules/Compiler

Modified Files:
	PGI-C.cmake PGI-CXX.cmake PGI-Fortran.cmake 
Added Files:
	PGI.cmake 
Log Message:
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.


Index: PGI-C.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/Compiler/PGI-C.cmake,v
retrieving revision 1.1
retrieving revision 1.2
diff -C 2 -d -r1.1 -r1.2
*** PGI-C.cmake	29 Jul 2009 20:38:05 -0000	1.1
--- PGI-C.cmake	4 Dec 2009 15:21:45 -0000	1.2
***************
*** 1 ****
! SET(CMAKE_C_VERBOSE_FLAG "-v")
--- 1,4 ----
! include(Compiler/PGI)
! __compiler_pgi(C)
! set(CMAKE_C_FLAGS_MINSIZEREL_INIT "${CMAKE_C_FLAGS_MINSIZEREL_INIT} -DNDEBUG")
! set(CMAKE_C_FLAGS_RELEASE_INIT "${CMAKE_C_FLAGS_RELEASE_INIT} -DNDEBUG")

Index: PGI-Fortran.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/Compiler/PGI-Fortran.cmake,v
retrieving revision 1.1
retrieving revision 1.2
diff -C 2 -d -r1.1 -r1.2
*** PGI-Fortran.cmake	29 Jul 2009 20:38:06 -0000	1.1
--- PGI-Fortran.cmake	4 Dec 2009 15:21:49 -0000	1.2
***************
*** 1 ****
! SET(CMAKE_Fortran_VERBOSE_FLAG "-v")
--- 1,12 ----
! include(Compiler/PGI)
! __compiler_pgi(Fortran)
! 
! SET(CMAKE_Fortran_FLAGS_INIT "${CMAKE_Fortran_FLAGS_INIT} -Mpreprocess -Kieee")
! SET(CMAKE_Fortran_FLAGS_DEBUG_INIT "${CMAKE_Fortran_FLAGS_DEBUG_INIT} -Mbounds")
! 
! # We require updates to CMake C++ code to support preprocessing rules
! # for Fortran.
! SET(CMAKE_Fortran_CREATE_PREPROCESSED_SOURCE)
! SET(CMAKE_Fortran_CREATE_ASSEMBLY_SOURCE)
! 
! SET(CMAKE_Fortran_MODDIR_FLAG "-module ")

Index: PGI-CXX.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/Compiler/PGI-CXX.cmake,v
retrieving revision 1.1
retrieving revision 1.2
diff -C 2 -d -r1.1 -r1.2
*** PGI-CXX.cmake	29 Jul 2009 20:38:06 -0000	1.1
--- PGI-CXX.cmake	4 Dec 2009 15:21:47 -0000	1.2
***************
*** 1 ****
! SET(CMAKE_CXX_VERBOSE_FLAG "-v")
--- 1,4 ----
! include(Compiler/PGI)
! __compiler_pgi(CXX)
! set(CMAKE_CXX_FLAGS_MINSIZEREL_INIT "${CMAKE_CXX_FLAGS_MINSIZEREL_INIT} -DNDEBUG")
! set(CMAKE_CXX_FLAGS_RELEASE_INIT "${CMAKE_CXX_FLAGS_RELEASE_INIT} -DNDEBUG")

--- NEW FILE: PGI.cmake ---

#=============================================================================
# Copyright 2002-2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
# (To distributed this file outside of CMake, substitute the full
#  License text for the above reference.)

# This module is shared by multiple languages; use include blocker.
if(__COMPILER_PGI)
  return()
endif()
set(__COMPILER_PGI 1)

macro(__compiler_pgi lang)
  # Feature flags.
  set(CMAKE_${lang}_VERBOSE_FLAG "-v")

  # Initial configuration flags.
  set(CMAKE_${lang}_FLAGS_INIT "")
  set(CMAKE_${lang}_FLAGS_DEBUG_INIT "-g -O0")
  set(CMAKE_${lang}_FLAGS_MINSIZEREL_INIT "-O2 -s")
  set(CMAKE_${lang}_FLAGS_RELEASE_INIT "-fast -O3 -Mipa=fast")
  set(CMAKE_${lang}_FLAGS_RELWITHDEBINFO_INIT "-O2 -gopt")

  # Preprocessing and assembly rules.
  set(CMAKE_${lang}_CREATE_PREPROCESSED_SOURCE "<CMAKE_${lang}_COMPILER> <DEFINES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>")
  set(CMAKE_${lang}_CREATE_ASSEMBLY_SOURCE "<CMAKE_${lang}_COMPILER> <DEFINES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE>")
endmacro()



More information about the Cmake-commits mailing list