summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Linux-GNU-Fortran.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/Platform/Linux-GNU-Fortran.cmake')
-rw-r--r--Modules/Platform/Linux-GNU-Fortran.cmake15
1 files changed, 15 insertions, 0 deletions
diff --git a/Modules/Platform/Linux-GNU-Fortran.cmake b/Modules/Platform/Linux-GNU-Fortran.cmake
index ba13a43..16d63fc 100644
--- a/Modules/Platform/Linux-GNU-Fortran.cmake
+++ b/Modules/Platform/Linux-GNU-Fortran.cmake
@@ -1 +1,16 @@
SET(CMAKE_Fortran_MODDIR_FLAG -J)
+SET (CMAKE_SHARED_LIBRARY_Fortran_FLAGS "-fPIC") # -pic
+SET (CMAKE_Fortran_FLAGS_INIT "")
+SET (CMAKE_Fortran_FLAGS_DEBUG_INIT "-g")
+SET (CMAKE_Fortran_FLAGS_MINSIZEREL_INIT "-Os")
+SET (CMAKE_Fortran_FLAGS_RELEASE_INIT "-O3")
+SET (CMAKE_Fortran_FLAGS_RELWITHDEBINFO_INIT "-O2 -g")
+
+IF(NOT APPLE)
+ SET (CMAKE_INCLUDE_SYSTEM_FLAG_Fortran "-isystem ")
+ENDIF(NOT APPLE)
+
+# These will require updates to CMake C++ code to support
+# preprocessing rules for Fortran.
+#SET (CMAKE_Fortran_CREATE_PREPROCESSED_SOURCE "<CMAKE_Fortran_COMPILER> <DEFINES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>")
+#SET (CMAKE_Fortran_CREATE_ASSEMBLY_SOURCE "<CMAKE_Fortran_COMPILER> <DEFINES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE>")