diff options
author | Brad King <brad.king@kitware.com> | 2009-12-02 20:17:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-12-02 20:17:53 (GMT) |
commit | 4d72006bd6ba8c471236a9732ae4fd9cc9e90cfa (patch) | |
tree | 3665c5144e0d62b4c9150064babc6bf322802447 /Modules/Platform/IRIX64.cmake | |
parent | 9daa4a6c3f3106adf02c9f8bc587fa8096a56b3b (diff) | |
download | CMake-4d72006bd6ba8c471236a9732ae4fd9cc9e90cfa.zip CMake-4d72006bd6ba8c471236a9732ae4fd9cc9e90cfa.tar.gz CMake-4d72006bd6ba8c471236a9732ae4fd9cc9e90cfa.tar.bz2 |
Reduce duplication in Platform/<os>.cmake files
Several platform-wide linker flag variables are defined in
Modules/Platform/<os>.cmake files for C and then copied by the
Modules/CMake<lang>Information.cmake file for each language.
We now use this approach for the variables
CMAKE_EXE_EXPORTS_${lang}_FLAG
CMAKE_SHARED_LIBRARY_SONAME_${lang}_FLAG
CMAKE_SHARED_LIBRARY_CREATE_${lang}_FLAGS
to avoid duplication for multiple languages in each platform file.
Diffstat (limited to 'Modules/Platform/IRIX64.cmake')
-rw-r--r-- | Modules/Platform/IRIX64.cmake | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/Platform/IRIX64.cmake b/Modules/Platform/IRIX64.cmake index d83ca60..b60a7f2 100644 --- a/Modules/Platform/IRIX64.cmake +++ b/Modules/Platform/IRIX64.cmake @@ -1,10 +1,8 @@ SET(CMAKE_DL_LIBS "") SET(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-shared -rdata_shared") -SET(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS "-shared -rdata_shared") SET(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "-Wl,-rpath,") # -rpath SET(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP "") # : or empty SET(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-Wl,-soname,") -SET(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG "-Wl,-soname,") IF(NOT CMAKE_COMPILER_IS_GNUCC) # Set default flags init. SET(CMAKE_C_FLAGS_INIT "") |