diff options
author | Brad King <brad.king@kitware.com> | 2009-12-02 14:52:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-12-02 14:52:00 (GMT) |
commit | e28c16b482ace7a27ddd9c3680ce942ca83a9f38 (patch) | |
tree | f2f47fe778e7535335d5ee800c32bf22d42cb97f /Modules/Platform/AIX.cmake | |
parent | f3cd66577f3ed061123b1145f557eb28b80520dd (diff) | |
download | CMake-e28c16b482ace7a27ddd9c3680ce942ca83a9f38.zip CMake-e28c16b482ace7a27ddd9c3680ce942ca83a9f38.tar.gz CMake-e28c16b482ace7a27ddd9c3680ce942ca83a9f38.tar.bz2 |
Split GNU compiler information files
This moves GNU compiler flags into new-style modules
Compiler/GNU-<lang>.cmake
Platform/<os>-GNU-<lang>.cmake
We use language-independent helper modules
Compiler/GNU.cmake
Platform/<os>-GNU.cmake
to define macros consolidating the information.
Diffstat (limited to 'Modules/Platform/AIX.cmake')
-rw-r--r-- | Modules/Platform/AIX.cmake | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Modules/Platform/AIX.cmake b/Modules/Platform/AIX.cmake index c8a33c3..0ab0cce 100644 --- a/Modules/Platform/AIX.cmake +++ b/Modules/Platform/AIX.cmake @@ -15,16 +15,6 @@ SET(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":") # Files named "libfoo.a" may actually be shared libraries. SET_PROPERTY(GLOBAL PROPERTY TARGET_ARCHIVES_MAY_BE_SHARED_LIBS 1) -# CXX Compiler -IF(CMAKE_COMPILER_IS_GNUCXX) - SET(CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS "-shared -Wl,-G") # -shared -ENDIF(CMAKE_COMPILER_IS_GNUCXX) - -# C Compiler -IF(CMAKE_COMPILER_IS_GNUCC) - SET(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-shared -Wl,-G") # -shared -ENDIF(CMAKE_COMPILER_IS_GNUCC) - # since .a can be a static or shared library on AIX, we can not do this. # at some point if we wanted it, we would have to figure out if a .a is # static or shared, then we could add this back: |