From: Taylor R. Campbell Date: Sun, 15 Apr 2007 08:16:34 +0000 (+0000) Subject: Bump the stack size to two hundred blocks, rather than the default of X-Git-Tag: 20090517-FFI~653 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=15b066f07b29c9bd6658b3c7fd68b294518cec9d;p=mit-scheme.git Bump the stack size to two hundred blocks, rather than the default of one hundred blocks, when compiling Scheme with liarc. One hundred blocks is insufficient to compile sos/instance.scm with liarc. --- diff --git a/v7/src/etc/c-compile.sh b/v7/src/etc/c-compile.sh index 1bdc542d4..15fb863b4 100755 --- a/v7/src/etc/c-compile.sh +++ b/v7/src/etc/c-compile.sh @@ -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"