From 035264731ec0429cc8f9985f5ad59c7ee70e9132 Mon Sep 17 00:00:00 2001 From: Manfred Gahr Date: Mon, 5 Dec 2011 23:37:53 +0200 Subject: [PATCH] fix make.sh --dynamic-space-size option handling !CONFIGURE-DYNAMIC-SPACE-END actually ignored the number it read. --- src/compiler/generic/parms.lisp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/compiler/generic/parms.lisp b/src/compiler/generic/parms.lisp index 233f39a..4d793be 100644 --- a/src/compiler/generic/parms.lisp +++ b/src/compiler/generic/parms.lisp @@ -26,12 +26,12 @@ (expt 2 30)) (t (error "Invalid --dynamic-space-size=~A" line))))) - `(+ dynamic-space-start ,(* number mult)))) - (or default - `(+ dynamic-space-start - (ecase n-word-bits - (32 (expt 2 29)) - (64 (expt 2 30))))))))) + `(+ dynamic-space-start ,(* number mult))) + (or default + `(+ dynamic-space-start + (ecase n-word-bits + (32 (expt 2 29)) + (64 (expt 2 30)))))))))) (defparameter *c-callable-static-symbols* '(sub-gc -- 1.7.10.4