diff options
author | Brad King <brad.king@kitware.com> | 2009-08-21 14:32:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-08-21 14:32:26 (GMT) |
commit | 9ee0f9801a8b90e58f48e1b32b95624c9556251d (patch) | |
tree | 4571c22e1c1b9b72064222e7c0e3ac07ca02e0b0 /Modules/Compiler/SunPro-Fortran.cmake | |
parent | 2ce6a7d0fbbd70c33592a98d204d8db7fad9a895 (diff) | |
download | CMake-9ee0f9801a8b90e58f48e1b32b95624c9556251d.zip CMake-9ee0f9801a8b90e58f48e1b32b95624c9556251d.tar.gz CMake-9ee0f9801a8b90e58f48e1b32b95624c9556251d.tar.bz2 |
Split SunPro compiler information files
This moves platform-independent SunPro compiler flags into separate
"Compiler/SunPro-<lang>.cmake" modules. Platform-specific flags are
left untouched.
Diffstat (limited to 'Modules/Compiler/SunPro-Fortran.cmake')
-rw-r--r-- | Modules/Compiler/SunPro-Fortran.cmake | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Modules/Compiler/SunPro-Fortran.cmake b/Modules/Compiler/SunPro-Fortran.cmake index 7f7c128..0933bf7 100644 --- a/Modules/Compiler/SunPro-Fortran.cmake +++ b/Modules/Compiler/SunPro-Fortran.cmake @@ -1 +1,16 @@ +SET(CMAKE_SHARED_LIBRARY_Fortran_FLAGS "-KPIC") +SET(CMAKE_SHARED_LIBRARY_CREATE_Fortran_FLAGS "-G") +SET(CMAKE_SHARED_LIBRARY_LINK_Fortran_FLAGS "") +SET(CMAKE_SHARED_LIBRARY_RUNTIME_Fortran_FLAG "-R") +SET(CMAKE_SHARED_LIBRARY_RUNTIME_Fortran_FLAG_SEP ":") +SET(CMAKE_SHARED_LIBRARY_SONAME_Fortran_FLAG "-h") +set(CMAKE_EXECUTABLE_RUNTIME_Fortran_FLAG "-R") + +SET(CMAKE_Fortran_FLAGS_INIT "") +SET(CMAKE_Fortran_FLAGS_DEBUG_INIT "-g") +SET(CMAKE_Fortran_FLAGS_MINSIZEREL_INIT "-xO2 -xspace -DNDEBUG") +SET(CMAKE_Fortran_FLAGS_RELEASE_INIT "-xO3 -DNDEBUG") +SET(CMAKE_Fortran_FLAGS_RELWITHDEBINFO_INIT "-g -xO2") +SET(CMAKE_Fortran_MODDIR_FLAG "-moddir=") +SET(CMAKE_Fortran_MODPATH_FLAG "-M") SET(CMAKE_Fortran_VERBOSE_FLAG "-v") |