From: Stephen Adams Date: Wed, 10 Nov 1993 21:31:37 +0000 (+0000) Subject: Compile now with error checking X-Git-Tag: 20090517-FFI~7551 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=3e4f74401eb93016b111bf4cd16fd5b946470a23;p=mit-scheme.git Compile now with error checking --- diff --git a/v7/src/win32/win32.cbf b/v7/src/win32/win32.cbf index 121854e98..0f3609297 100644 --- a/v7/src/win32/win32.cbf +++ b/v7/src/win32/win32.cbf @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/win32/win32.cbf,v 1.1 1993/09/20 01:13:04 adams Exp $ +$Id: win32.cbf,v 1.2 1993/11/10 21:31:37 adams Exp $ Copyright (c) 1993 Massachusetts Institute of Technology @@ -32,4 +32,8 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. |# -(compile-directory ".") \ No newline at end of file +(fluid-let ((compiler:coalescing-constant-warnings? #f) + (compiler:generate-range-checks? true) + (compiler:generate-stack-checks? true) + (compiler:generate-type-checks? true)) + (compile-directory "."))