#| -*-Scheme-*-
-$Id: make.scm,v 4.129 2007/06/08 05:58:53 cph Exp $
+$Id: make.scm,v 4.130 2007/06/17 16:54:34 cph Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
(declare (usual-integrations))
-(lambda (architecture-name)
- architecture-name
+(lambda (#!optional architecture-name)
(load-option 'COMPRESS)
(load-option 'RB-TREE)
((access with-directory-rewriting-rule
(pathname-as-directory "compiler")
(lambda ()
(load-package-set "compiler")))
- (add-subsystem-identification! "LIAR" '(4 118)))
\ No newline at end of file
+ (add-subsystem-identification! (if (default-object? architecture-name)
+ "LIAR"
+ (string-append "LIAR/" architecture-name))
+ '(4 118)))
\ No newline at end of file
#| -*-Scheme-*-
-$Id: make.scm,v 1.11 2007/06/06 19:42:38 cph Exp $
+$Id: make.scm,v 1.12 2007/06/17 16:54:34 cph Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
(load-option 'SYNCHRONOUS-SUBPROCESS)
-(let ((value ((load "base/make")
- (string-append "C/" microcode-id/machine-type))))
+(let ((value ((load "base/make") "C")))
(set! (access compiler:compress-top-level?
(->environment '(compiler)))
#t)
(set! (access compiler:compile-data-files-as-expressions?
(->environment '(compiler top-level)))
- false)
+ #f)
(set! (access compiler:fggen-unmap-reference-traps-early?
(->environment '(compiler fg-generator)))
- false)
+ #f)
value)
\ No newline at end of file
#| -*-Scheme-*-
-$Id: make.scm,v 1.8 2007/01/05 21:19:20 cph Exp $
+$Id: make.scm,v 1.9 2007/06/17 16:54:34 cph Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
(declare (usual-integrations))
-(let ((value ((load "base/make") "Alpha")))
- (set! (access compiler:compress-top-level? (->environment '(compiler)))
- true)
- value)
+(let ((value ((load "base/make") "alpha")))
+ (set! (access compiler:compress-top-level? (->environment '(compiler))) #t)
+ value)
\ No newline at end of file
#| -*-Scheme-*-
-$Id: make.scm,v 1.10 2007/01/05 21:19:21 cph Exp $
+$Id: make.scm,v 1.11 2007/06/17 16:54:35 cph Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
(declare (usual-integrations))
-(let* ((val ((load "base/make") "Intel i386"))
- (env (->environment '(compiler))))
- (set! (access compiler:compress-top-level? env) true)
- val)
\ No newline at end of file
+(let ((value ((load "base/make") "i386")))
+ (set! (access compiler:compress-top-level? (->environment '(compiler))) #t)
+ value)
\ No newline at end of file
#| -*-Scheme-*-
-$Id: make.scm,v 4.94 2007/01/05 21:19:22 cph Exp $
+$Id: make.scm,v 4.95 2007/06/17 16:54:35 cph Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
(declare (usual-integrations))
-(let ((value ((load "base/make") "HP PA")))
+(let ((value ((load "base/make") "HPPA")))
(set! (access compiler:compress-top-level? (->environment '(compiler)))
- true)
+ #t)
value)
\ No newline at end of file
#| -*-Scheme-*-
-$Id: make.scm,v 4.93 2007/01/05 21:19:22 cph Exp $
+$Id: make.scm,v 4.94 2007/06/17 16:54:35 cph Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
(declare (usual-integrations))
-((load "base/make") "DEC VAX")
+((load "base/make") "VAX")
((environment-lookup (->environment '(COMPILER DISASSEMBLER MACROS))
'INITIALIZE-PACKAGE!))
\ No newline at end of file