1.0.46.29: fix run-compiler.sh for darwin/x86
authorCyrus Harmon <ch-sbcl@bobobeach.com>
Tue, 8 Mar 2011 01:44:41 +0000 (01:44 +0000)
committerCyrus Harmon <ch-sbcl@bobobeach.com>
Tue, 8 Mar 2011 01:44:41 +0000 (01:44 +0000)
 * default arch is now x86_64, so check for x86 and use arch i386 if
   appropriate

tests/run-compiler.sh
version.lisp-expr

index 3532fe3..d1a4755 100644 (file)
@@ -12,6 +12,10 @@ case "$platform" in
     Darwin-X86-64) args="-arch x86_64" ;;
 esac
 
+case "$platform" in
+    Darwin-X86) args="-arch i386" ;;
+esac
+
 while [ $# -gt 0 ]; do
     arg="$1"
     new=
index 7484d9c..b743558 100644 (file)
@@ -20,4 +20,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.46.28"
+"1.0.46.29"