[cmucl-cvs] [git] CMU Common Lisp branch master updated. snapshot-2013-03-a-1-g1e8b06b

Raymond Toy rtoy at common-lisp.net
Sun Mar 10 05:25:23 UTC 2013


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  1e8b06be53f874e64d4f687247188349388fb1b4 (commit)
      from  90b155a2a8cbf269e022f191f9b8566da8ace0da (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 1e8b06be53f874e64d4f687247188349388fb1b4
Author: Raymond Toy <toy.raymond at gmail.com>
Date:   Sat Mar 9 21:24:25 2013 -0800

    Support ppc.

diff --git a/bin/build-all.sh b/bin/build-all.sh
index 7cf7c88..d5823af 100755
--- a/bin/build-all.sh
+++ b/bin/build-all.sh
@@ -60,8 +60,11 @@ done
 # If -b not given, try to derive one instead of just using "build".
 if [ -z "$BASE" ]; then
     case `uname -s` in
-      Darwin) # We only support darwin-x86 now.  No ppc available anymore.
-	  BASE=darwin ;;
+      Darwin)
+          case `uname -p` in
+            powerpc) BASE=ppc ;;
+            i386) BASE=darwin ;;
+          esac ;;
       SunOS)
 	  case `uname -m` in
 	    sun4u) BASE=sparc ;;
@@ -118,6 +121,8 @@ buildsun4 ()
 
 case `uname -m` in
   i386*|x86*|i86pc) buildx86 ;;
-  sun*) buildsun4 ;;
+  sun*|"Power Mac*")
+    # buildsun4 works for sparc and ppc.
+    buildsun4 ;;
   *) echo "Unsupported architecture:  `uname -m`" ;;
 esac

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

Summary of changes:
 bin/build-all.sh |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
CMU Common Lisp




More information about the cmucl-cvs mailing list