[Cmake-commits] CMake branch, next, updated. v2.8.6-1510-gb4da0da

Stephen Kelly steveire at gmail.com
Wed Oct 5 11:16:13 EDT 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  b4da0da63e02a50091b8b2a8048502257fa86a58 (commit)
       via  4f37d5c7d9505848a4e2cddee0c29ee354f0c14a (commit)
      from  9e7a7f82b132f70005f42df3c7f58dbdab116799 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b4da0da63e02a50091b8b2a8048502257fa86a58
commit b4da0da63e02a50091b8b2a8048502257fa86a58
Merge: 9e7a7f8 4f37d5c
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Wed Oct 5 11:16:12 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Oct 5 11:16:12 2011 -0400

    Merge topic 'cmake-link-interface-libraries' into next
    
    4f37d5c Explicitly exclude apple from use of this linker flag.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4f37d5c7d9505848a4e2cddee0c29ee354f0c14a
commit 4f37d5c7d9505848a4e2cddee0c29ee354f0c14a
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Wed Oct 5 17:14:57 2011 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Wed Oct 5 17:14:57 2011 +0200

    Explicitly exclude apple from use of this linker flag.
    
    The check for this flag seems to pass on Apple, and then fail later.

diff --git a/Tests/CMakeCommands/target_link_libraries/src/CMakeLists.txt b/Tests/CMakeCommands/target_link_libraries/src/CMakeLists.txt
index 22e6b29..5411226 100644
--- a/Tests/CMakeCommands/target_link_libraries/src/CMakeLists.txt
+++ b/Tests/CMakeCommands/target_link_libraries/src/CMakeLists.txt
@@ -7,7 +7,7 @@ include(GenerateExportHeader)
 
 check_cxx_compiler_flag(-Wl,--no-undefined HAS_NO_UNDEFINED)
 
-if (HAS_NO_UNDEFINED)
+if (HAS_NO_UNDEFINED AND NOT APPLE)
   set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined")
 endif()
 

-----------------------------------------------------------------------

Summary of changes:
 .../target_link_libraries/src/CMakeLists.txt       |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list