Explicitly specify the band to use when cross compiling. The recent
authorChris Hanson <org/chris-hanson/cph>
Wed, 8 Oct 2008 07:14:15 +0000 (07:14 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 8 Oct 2008 07:14:15 +0000 (07:14 +0000)
change of the default band violated the assumptions used here.

v7/src/etc/c-prepare.sh
v7/src/etc/compile-boot-compiler.sh
v7/src/etc/native-prepare.sh

index e6904cf57dde27bae4c03fd4291f94c7844cc50b..1807309f9a825090666d830e6e9dd6647ff15d3a 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $Id: c-prepare.sh,v 1.11 2008/01/30 20:02:08 cph Exp $
+# $Id: c-prepare.sh,v 1.12 2008/10/08 07:14:09 cph Exp $
 #
 # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
 #     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -34,7 +34,7 @@ else
     exit 1
 fi
 
-run_cmd "${EXE}" --heap 6000 --stack 200 <<EOF
+run_cmd "${EXE}" --band runtime.com --heap 6000 --stack 200 <<EOF
 (begin
   (load "etc/compile.scm")
   (c-prepare))
index 2852d040b22af1c56cd7b2f650dadd09cf47b7cc..f0bfd2dfc8ddbe719233ca0f665f53e084135a90 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $Id: compile-boot-compiler.sh,v 1.3 2008/01/30 20:02:08 cph Exp $
+# $Id: compile-boot-compiler.sh,v 1.4 2008/10/08 07:14:12 cph Exp $
 #
 # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
 #     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -34,13 +34,13 @@ else
     exit 1
 fi
 
-run_cmd "${EXE}" --heap 6000 <<EOF
+run_cmd "${EXE}" --band runtime.com --heap 6000 <<EOF
 (begin
   (load "etc/compile.scm")
   (compile-bootstrap-1))
 EOF
 
-run_cmd "${EXE}" --heap 6000 --compiler <<EOF
+run_cmd "${EXE}" --band all.com --heap 6000 <<EOF
 (begin
   (load "etc/compile.scm")
   (compile-bootstrap-2))
index 4ad57192732778e55adbe14cc9a8b7b2381d5025..7028967f17a675c886bce3757952c6efb9999065 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $Id: native-prepare.sh,v 1.4 2008/01/30 20:02:08 cph Exp $
+# $Id: native-prepare.sh,v 1.5 2008/10/08 07:14:15 cph Exp $
 #
 # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
 #     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
@@ -34,7 +34,7 @@ else
     exit 1
 fi
 
-run_cmd "${EXE}" --heap 6000 --stack 200 <<EOF
+run_cmd "${EXE}" --band runtime.com --heap 6000 --stack 200 <<EOF
 (begin
   (load "etc/compile.scm")
   (native-prepare))