From 15b066f07b29c9bd6658b3c7fd68b294518cec9d Mon Sep 17 00:00:00 2001 From: "Taylor R. Campbell" Date: Sun, 15 Apr 2007 08:16:34 +0000 Subject: [PATCH] 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. --- v7/src/etc/c-compile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 2.25.1