[Cmake-commits] CMake branch, next, updated. v2.8.6-1525-g6254adf

Stephen Kelly steveire at gmail.com
Fri Oct 7 11:01:12 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  6254adf186f7a84d10e0d4f463cb0acce28b03d8 (commit)
       via  bf1e1bbcc42e89a2ac0673a0b69340f6cf569a2d (commit)
      from  606b2850dff8317f1e6c1bf4a2fcd8e0621bdaaa (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=6254adf186f7a84d10e0d4f463cb0acce28b03d8
commit 6254adf186f7a84d10e0d4f463cb0acce28b03d8
Merge: 606b285 bf1e1bb
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Fri Oct 7 11:01:06 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Oct 7 11:01:06 2011 -0400

    Merge topic 'cmake-link-interface-libraries' into next
    
    bf1e1bb Disable the use of -Wl,--no-undefined


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=bf1e1bbcc42e89a2ac0673a0b69340f6cf569a2d
commit bf1e1bbcc42e89a2ac0673a0b69340f6cf569a2d
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Fri Oct 7 17:00:04 2011 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Fri Oct 7 17:00:04 2011 +0200

    Disable the use of -Wl,--no-undefined
    
    It's causing some noisy failures.

diff --git a/Tests/CMakeCommands/target_link_libraries/src/CMakeLists.txt b/Tests/CMakeCommands/target_link_libraries/src/CMakeLists.txt
index 5411226..8c79b5b 100644
--- a/Tests/CMakeCommands/target_link_libraries/src/CMakeLists.txt
+++ b/Tests/CMakeCommands/target_link_libraries/src/CMakeLists.txt
@@ -8,7 +8,8 @@ include(GenerateExportHeader)
 check_cxx_compiler_flag(-Wl,--no-undefined HAS_NO_UNDEFINED)
 
 if (HAS_NO_UNDEFINED AND NOT APPLE)
-  set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined")
+  # Disabled while figuring out why the check above gives a false positive.
+#   set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined")
 endif()
 
 set(CMAKE_INCLUDE_CURRENT_DIR ON)

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list