CMUCL commit: src/tools (linker-x86.sh)
Raymond Toy
rtoy at common-lisp.net
Sat Jul 31 04:55:17 CEST 2010
Date: Friday, July 30, 2010 @ 22:55:17
Author: rtoy
Path: /project/cmucl/cvsroot/src/tools
Modified: linker-x86.sh
Put back the segment address for Darwin. If we don't, vmmap prints
error messages about being unable being unable to read zones for
malloc. Don't know if that's a bug in vmmap or not, but that doesn't
sound good, and the message go away if we define seg addresses again.
---------------+
linker-x86.sh | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Index: src/tools/linker-x86.sh
diff -u src/tools/linker-x86.sh:1.5 src/tools/linker-x86.sh:1.6
--- src/tools/linker-x86.sh:1.5 Fri Jul 30 22:45:45 2010
+++ src/tools/linker-x86.sh Fri Jul 30 22:55:17 2010
@@ -1,6 +1,6 @@
#!/bin/sh
-# $Id: linker-x86.sh,v 1.5 2010-07-31 02:45:45 rtoy Exp $
+# $Id: linker-x86.sh,v 1.6 2010-07-31 02:55:17 rtoy Exp $
# This file written by Raymond Toy as part of CMU Common Lisp and is
# placed in the public domain.
@@ -50,9 +50,9 @@
;;
Darwin*)
# How to specify the starting address for each of the sections
- #RO_ADDR="-segaddr CORRO $4"
- #STATIC_ADDR="-segaddr CORSTA $5"
- #DYN_ADDR="-segaddr CORDYN $6"
+ RO_ADDR="-segaddr CORRO $4"
+ STATIC_ADDR="-segaddr CORSTA $5"
+ DYN_ADDR="-segaddr CORDYN $6"
# Specify how to link the entire lisp.a library
OPT_ARCHIVE="-all_load $CMUCLLIB/lisp.a"
More information about the cmucl-commit
mailing list