[Cmake-commits] CMake branch, next, updated. v2.8.12.1-7166-g047d75b

Brad King brad.king at kitware.com
Fri Jan 17 09:24:23 EST 2014


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  047d75bb68b1458607d1be9d386a7bcdda9d8917 (commit)
       via  8f2c2ccb0b29f69f3842f09db100c489e8de1581 (commit)
      from  b61fff94ef1d137390129a50862353d6271198de (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=047d75bb68b1458607d1be9d386a7bcdda9d8917
commit 047d75bb68b1458607d1be9d386a7bcdda9d8917
Merge: b61fff9 8f2c2cc
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Jan 17 09:24:23 2014 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Jan 17 09:24:23 2014 -0500

    Merge topic 'hppa-binutils-flag' into next
    
    8f2c2ccb Improve ld flags for CMake itself on Linux/HPPA


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8f2c2ccb0b29f69f3842f09db100c489e8de1581
commit 8f2c2ccb0b29f69f3842f09db100c489e8de1581
Author:     Guy Martin <gmsoft at tuxicoman.be>
AuthorDate: Thu Jan 16 09:26:30 2014 +0100
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Fri Jan 17 09:23:31 2014 -0500

    Improve ld flags for CMake itself on Linux/HPPA
    
    Workaround binutils bug by only marking unique section starting by
    ".text._".
    
    This adds the HPPA workaround improved in commit b22a0f15 (bootstrap:
    improve ld flag for Linux/HPPA builds, 2014-01-14) not only to the
    bootstrap, but also to the normal build.

diff --git a/CompileFlags.cmake b/CompileFlags.cmake
index 20f5dec..24ac58d 100644
--- a/CompileFlags.cmake
+++ b/CompileFlags.cmake
@@ -66,5 +66,5 @@ endif ()
 # avoid binutils problem with large binaries, e.g. when building CMake in debug mode
 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50230
 if (CMAKE_SYSTEM_NAME STREQUAL Linux AND CMAKE_SYSTEM_PROCESSOR STREQUAL parisc)
-  set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--unique=.text.*")
+  set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--unique=.text._*")
 endif ()

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

Summary of changes:


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list