#| -*-Scheme-*-
-$Id: make.scm,v 1.3 1992/10/07 01:29:36 jinx Exp $
+$Id: make.scm,v 1.4 1993/03/01 17:37:19 gjr Exp $
-Copyright (c) 1992 Massachusetts Institute of Technology
+Copyright (c) 1992-1993 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
(declare (usual-integrations))
-((load "base/make") "Intel i386")
-(set! (access compiler:generate-stack-checks? (->environment '(compiler)))
- false)
\ No newline at end of file
+(let* ((val ((load "base/make") "Intel i386"))
+ (env (->environment '(compiler))))
+ (set! (access compiler:generate-stack-checks? env) false)
+ (set! (access compiler:compress-top-level? env) true)
+ val)
\ No newline at end of file