Bump the stack size to two hundred blocks, rather than the default of
authorTaylor R. Campbell <net/mumble/campbell>
Sun, 15 Apr 2007 08:16:34 +0000 (08:16 +0000)
committerTaylor R. Campbell <net/mumble/campbell>
Sun, 15 Apr 2007 08:16:34 +0000 (08:16 +0000)
one hundred blocks, when compiling Scheme with liarc.  One hundred
blocks is insufficient to compile sos/instance.scm with liarc.

v7/src/etc/c-compile.sh

index 1bdc542d4551e239e1f0cc4094e72fc9f1af5133..15fb863b4ec0c1adc5ad63cdb67479af78ba849f 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $Id: c-compile.sh,v 1.1 2007/04/04 05:08:19 riastradh Exp $
+# $Id: c-compile.sh,v 1.2 2007/04/15 08:16:34 riastradh Exp $
 #
 # Copyright 2007 Massachusetts Institute of Technology
 #
@@ -38,7 +38,7 @@ if [ -z "${SCHEME_COMPILER}" ]; then
        sh etc/c-initial-bands.sh
     )
     SCHEME_COMPILER="${DIR}/microcode/scheme --library ${DIR}/lib"
-    SCHEME_COMPILER="${SCHEME_COMPILER} --compiler --heap 3000"
+    SCHEME_COMPILER="${SCHEME_COMPILER} --compiler --heap 3000 --stack 200"
 fi
 
 ${SCHEME_COMPILER} < "${DIR}/etc/c-compile.scm"