CMUCL commit: src/tools (linker-x86.sh)

Raymond Toy rtoy at common-lisp.net
Wed Sep 8 13:01:55 CEST 2010


    Date: Wednesday, September 8, 2010 @ 07:01:55
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/tools

Modified: linker-x86.sh

Some small cleanups.


---------------+
 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.11 src/tools/linker-x86.sh:1.12
--- src/tools/linker-x86.sh:1.11	Wed Sep  8 03:08:36 2010
+++ src/tools/linker-x86.sh	Wed Sep  8 07:01:55 2010
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# $Id: linker-x86.sh,v 1.11 2010-09-08 07:08:36 agoncharov Exp $
+# $Id: linker-x86.sh,v 1.12 2010-09-08 11:01:55 rtoy Exp $
 
 # This file written by Raymond Toy as part of CMU Common Lisp and is
 # placed in the public domain.
@@ -73,7 +73,7 @@
 	FreeBSD) OS_LIBS=-lutil;;
       esac
       ;;
-  Darwin*)
+  Darwin)
       # How to specify the starting address for each of the sections.
       # We don't actually need these because map_core_sections sets
       # the addresses itself instead of from the segment address, but
@@ -95,7 +95,7 @@
       # See Config.x86_darwin
       OS_LIBS=
       ;;
-  SunOS*)
+  SunOS)
       # A quick test indicates that gcc will accept the following
       # options too, so this will work whether we have Sun C or gcc.
       # Note, that this probably only works if gcc uses Sun ld and not
@@ -118,7 +118,7 @@
 
 esac
 
-# Remove the C file when we're done.
+# Remove the C file and core section files when we're done.
 trap 'rm -f $OUTDIR/$OPT_IFADDR $OUTDIR/CORRO.o $OUTDIR/CORSTA.o $OUTDIR/CORDYN.o' 0
 
 (cd $OUTDIR



More information about the cmucl-commit mailing list