[Cmake-commits] CMake branch, next, updated. v2.8.9-341-g14c6c72

Brad King brad.king at kitware.com
Mon Sep 3 16:33:21 EDT 2012


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  14c6c727e05ab306b4268126ec942c8fa19a1bff (commit)
       via  c0f89e9c146ebb2cbb3c228f09c295875256d989 (commit)
      from  4501785e4beb907230ba8b6b2d0bdeaeda4d3fdd (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=14c6c727e05ab306b4268126ec942c8fa19a1bff
commit 14c6c727e05ab306b4268126ec942c8fa19a1bff
Merge: 4501785 c0f89e9
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Sep 3 16:33:19 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Sep 3 16:33:19 2012 -0400

    Merge topic 'magrathea-release-DT_RUNPATH' into next
    
    c0f89e9 magrathea: Tell cmELF about DT_RUNPATH (#13497)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c0f89e9c146ebb2cbb3c228f09c295875256d989
commit c0f89e9c146ebb2cbb3c228f09c295875256d989
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Sep 3 11:11:45 2012 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Sep 3 16:30:33 2012 -0400

    magrathea: Tell cmELF about DT_RUNPATH (#13497)
    
    Our Linux release machine 'magrathea' has a very old Linux to help build
    portable binaries.  It is so old that <elf.h> does not define the
    DT_RUNPATH constant.  Define the correct value in the build flags to
    activate handling of ELF RUNPATH entries in the binary release.

diff --git a/Utilities/Release/magrathea_release.cmake b/Utilities/Release/magrathea_release.cmake
index 1b2ae02..60c1a88 100644
--- a/Utilities/Release/magrathea_release.cmake
+++ b/Utilities/Release/magrathea_release.cmake
@@ -3,6 +3,8 @@ set(HOST magrathea)
 set(MAKE_PROGRAM "make")
 set(CC gcc332s)
 set(CXX c++332s)
+set(CFLAGS   -DDT_RUNPATH=29)
+set(CXXFLAGS -DDT_RUNPATH=29)
 set(INITIAL_CACHE "
 CMAKE_BUILD_TYPE:STRING=Release
 CURSES_LIBRARY:FILEPATH=/usr/i686-gcc-332s/lib/libncurses.a

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

Summary of changes:
 Utilities/Release/magrathea_release.cmake |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list