[cmucl-commit] [git] CMU Common Lisp branch master updated. snapshot-2014-11-33-gdf42533

Raymond Toy rtoy at common-lisp.net
Mon Dec 1 04:11:25 UTC 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 "CMU Common Lisp".

The branch, master has been updated
       via  df425339e0cf09ef687c491e99f6c10238f56b85 (commit)
      from  0ec33685dff49b910b0c46644f983064c02ab949 (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 -----------------------------------------------------------------
commit df425339e0cf09ef687c491e99f6c10238f56b85
Author: Raymond Toy <toy.raymond at gmail.com>
Date:   Sun Nov 30 20:11:18 2014 -0800

    Fix ticket:112 by specifying -mmacosx-version-min=10.5 when linking
    the new executable.

diff --git a/src/tools/linker.sh b/src/tools/linker.sh
index f97dcf4..a0050b9 100755
--- a/src/tools/linker.sh
+++ b/src/tools/linker.sh
@@ -94,7 +94,11 @@ case $uname_s in
 	    # up, so we move it to another address.  This seems to be
 	    # free, at least on 10.5.
 
-	    OPT_EXTRA="-segaddr __LINKEDIT 0x99000000 -rdynamic"
+	    # Also specify the min version. (See Config.x86_darwin for
+	    # the desired version.)  This gets rid of a PIE warning
+	    # when creating the executable on 10.8.  (See ticket:112.)
+
+	    OPT_EXTRA="-segaddr __LINKEDIT 0x99000000 -rdynamic -mmacosx-version-min=10.5"
 	    ;;
 	powerpc)
 	    # Nothing needed for ppc?

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

Summary of changes:
 src/tools/linker.sh | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
CMU Common Lisp


More information about the cmucl-commit mailing list