diff options
author | Brad King <brad.king@kitware.com> | 2009-09-01 17:55:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-01 17:55:13 (GMT) |
commit | 2eca4dd2d127ab8e7ba211a17139983bbef61802 (patch) | |
tree | 7d21495e251a32cac727b9552b1f9dad46dfb092 /Modules | |
parent | dc78838737a14a887e2932cb06a0adaaf8c80fef (diff) | |
download | CMake-2eca4dd2d127ab8e7ba211a17139983bbef61802.zip CMake-2eca4dd2d127ab8e7ba211a17139983bbef61802.tar.gz CMake-2eca4dd2d127ab8e7ba211a17139983bbef61802.tar.bz2 |
Use Intel for Linux flags only on Linux
The commit "Split Intel compiler information files" moved some Linux
specific flags into the platform-independent Intel compiler info files.
This moves them back.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Compiler/Intel-C.cmake | 7 | ||||
-rw-r--r-- | Modules/Compiler/Intel-CXX.cmake | 7 | ||||
-rw-r--r-- | Modules/Compiler/Intel-Fortran.cmake | 14 | ||||
-rw-r--r-- | Modules/Platform/Linux-Intel-C.cmake | 6 | ||||
-rw-r--r-- | Modules/Platform/Linux-Intel-CXX.cmake | 6 | ||||
-rw-r--r-- | Modules/Platform/Linux-Intel-Fortran.cmake | 13 | ||||
-rw-r--r-- | Modules/Platform/Linux-Intel.cmake (renamed from Modules/Compiler/Intel.cmake) | 0 |
7 files changed, 25 insertions, 28 deletions
diff --git a/Modules/Compiler/Intel-C.cmake b/Modules/Compiler/Intel-C.cmake index 57637b9..8f8aaaa 100644 --- a/Modules/Compiler/Intel-C.cmake +++ b/Modules/Compiler/Intel-C.cmake @@ -1,10 +1,3 @@ -INCLUDE(Compiler/Intel) -IF(XIAR) - SET(CMAKE_C_CREATE_STATIC_LIBRARY - "${XIAR} cr <TARGET> <LINK_FLAGS> <OBJECTS> " - "${XIAR} -s <TARGET> ") -ENDIF(XIAR) - SET(CMAKE_C_VERBOSE_FLAG "-v") SET(CMAKE_C_FLAGS_INIT "") diff --git a/Modules/Compiler/Intel-CXX.cmake b/Modules/Compiler/Intel-CXX.cmake index d1ee60f..56950f0 100644 --- a/Modules/Compiler/Intel-CXX.cmake +++ b/Modules/Compiler/Intel-CXX.cmake @@ -1,10 +1,3 @@ -INCLUDE(Compiler/Intel) -IF(XIAR) - SET(CMAKE_CXX_CREATE_STATIC_LIBRARY - "${XIAR} cr <TARGET> <LINK_FLAGS> <OBJECTS> " - "${XIAR} -s <TARGET> ") -ENDIF(XIAR) - SET(CMAKE_CXX_VERBOSE_FLAG "-v") SET(CMAKE_CXX_FLAGS_INIT "") diff --git a/Modules/Compiler/Intel-Fortran.cmake b/Modules/Compiler/Intel-Fortran.cmake index f0db1a8..f38b32e 100644 --- a/Modules/Compiler/Intel-Fortran.cmake +++ b/Modules/Compiler/Intel-Fortran.cmake @@ -1,17 +1,3 @@ -INCLUDE(Compiler/Intel) -IF(XIAR) - SET(CMAKE_Fortran_CREATE_STATIC_LIBRARY - "${XIAR} cr <TARGET> <LINK_FLAGS> <OBJECTS> " - "${XIAR} -s <TARGET> ") -ENDIF(XIAR) - -SET(CMAKE_SHARED_LIBRARY_Fortran_FLAGS "-fPIC") -SET(CMAKE_SHARED_LIBRARY_CREATE_Fortran_FLAGS "-shared") -SET(CMAKE_SHARED_LIBRARY_LINK_Fortran_FLAGS "-i_dynamic") -SET(CMAKE_SHARED_LIBRARY_RUNTIME_Fortran_FLAG "-Wl,-rpath,") -SET(CMAKE_SHARED_LIBRARY_RUNTIME_Fortran_FLAG_SEP ":") -SET(CMAKE_SHARED_LIBRARY_SONAME_Fortran_FLAG "-Wl,-soname,") - SET(CMAKE_Fortran_FLAGS_INIT "") SET(CMAKE_Fortran_FLAGS_DEBUG_INIT "-g") SET(CMAKE_Fortran_FLAGS_MINSIZEREL_INIT "-Os") diff --git a/Modules/Platform/Linux-Intel-C.cmake b/Modules/Platform/Linux-Intel-C.cmake new file mode 100644 index 0000000..554945e --- /dev/null +++ b/Modules/Platform/Linux-Intel-C.cmake @@ -0,0 +1,6 @@ +INCLUDE(Platform/Linux-Intel) +IF(XIAR) + SET(CMAKE_C_CREATE_STATIC_LIBRARY + "${XIAR} cr <TARGET> <LINK_FLAGS> <OBJECTS> " + "${XIAR} -s <TARGET> ") +ENDIF(XIAR) diff --git a/Modules/Platform/Linux-Intel-CXX.cmake b/Modules/Platform/Linux-Intel-CXX.cmake new file mode 100644 index 0000000..faa19e3 --- /dev/null +++ b/Modules/Platform/Linux-Intel-CXX.cmake @@ -0,0 +1,6 @@ +INCLUDE(Platform/Linux-Intel) +IF(XIAR) + SET(CMAKE_CXX_CREATE_STATIC_LIBRARY + "${XIAR} cr <TARGET> <LINK_FLAGS> <OBJECTS> " + "${XIAR} -s <TARGET> ") +ENDIF(XIAR) diff --git a/Modules/Platform/Linux-Intel-Fortran.cmake b/Modules/Platform/Linux-Intel-Fortran.cmake index 266599e..1db5ba6 100644 --- a/Modules/Platform/Linux-Intel-Fortran.cmake +++ b/Modules/Platform/Linux-Intel-Fortran.cmake @@ -1 +1,14 @@ +INCLUDE(Platform/Linux-Intel) +IF(XIAR) + SET(CMAKE_Fortran_CREATE_STATIC_LIBRARY + "${XIAR} cr <TARGET> <LINK_FLAGS> <OBJECTS> " + "${XIAR} -s <TARGET> ") +ENDIF(XIAR) + +SET(CMAKE_SHARED_LIBRARY_Fortran_FLAGS "-fPIC") +SET(CMAKE_SHARED_LIBRARY_CREATE_Fortran_FLAGS "-shared") +SET(CMAKE_SHARED_LIBRARY_LINK_Fortran_FLAGS "-i_dynamic") +SET(CMAKE_SHARED_LIBRARY_RUNTIME_Fortran_FLAG "-Wl,-rpath,") +SET(CMAKE_SHARED_LIBRARY_RUNTIME_Fortran_FLAG_SEP ":") +SET(CMAKE_SHARED_LIBRARY_SONAME_Fortran_FLAG "-Wl,-soname,") SET(CMAKE_DL_LIBS "dl") diff --git a/Modules/Compiler/Intel.cmake b/Modules/Platform/Linux-Intel.cmake index 030f2c0..030f2c0 100644 --- a/Modules/Compiler/Intel.cmake +++ b/Modules/Platform/Linux-Intel.cmake |