#| -*-Scheme-*-
-$Id: compiler.sf,v 1.6 1999/01/02 06:06:43 cph Exp $
+$Id: compiler.sf,v 1.7 2001/08/16 19:28:21 cph Exp $
-Copyright (c) 1992-1999 Massachusetts Institute of Technology
+Copyright (c) 1992-1999, 2001 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
|#
;;;; Script to incrementally syntax the compiler
;; Guarantee that the compiler's package structure exists.
(if (not (name->package '(COMPILER)))
(begin
- ;; If there is no existing package constructor, generate one.
- (if (not (file-exists? "compiler.bco"))
- (begin
- ((access cref/generate-trivial-constructor
- (->environment '(CROSS-REFERENCE)))
- "compiler")
- (sf "compiler.con")))
- (load "compiler.bco")))
+ (if (not (file-exists? "compiler.pkd"))
+ (cref/generate-trivial-constructor "compiler"))
+ (construct-packages-from-file (fasload "compiler.pkd"))))
;; Guarantee that the necessary syntactic transforms and optimizers
;; are loaded.
(load (string-append file ".bin") package))
files))))
(load-option 'HASH-TABLE)
- (write-string "\n\n---- Loading compile-time files ----")
+ (fresh-line)
+ (newline)
+ (write-string "---- Loading compile-time files ----")
+ (newline)
(sf-and-load '("base/switch") '(COMPILER))
(sf-and-load '("base/macros") '(COMPILER MACROS))
((access initialize-package! (->environment '(COMPILER MACROS))))
(->environment '(COMPILER MACROS)))))
(sf-and-load '("machines/C/machin") '(COMPILER)))
(set! (access endianness (->environment '(COMPILER))) 'BIG)
- (sf-and-load '("back/syntax")
- '(COMPILER LAP-SYNTAXER))
+ (sf-and-load '("back/syntax") '(COMPILER LAP-SYNTAXER))
(sf-and-load '("base/scode") '(COMPILER))
(sf-and-load '("base/pmerly") '(COMPILER PATTERN-MATCHER/EARLY))))
((access syntax-files! (->environment '(COMPILER))))
;; Rebuild the package constructors and cref.
-(cref/generate-constructors "compiler")
-(sf "compiler.con")
-(sf "compiler.ldr")
\ No newline at end of file
+(cref/generate-constructors "compiler")
\ No newline at end of file
#| -*-Scheme-*-
-$Id: compiler.sf,v 1.6 1999/01/02 06:48:57 cph Exp $
+$Id: compiler.sf,v 1.7 2001/08/16 19:28:21 cph Exp $
-Copyright (c) 1992-1999 Massachusetts Institute of Technology
+Copyright (c) 1992-1999, 2001 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
|#
;;;; Script to incrementally syntax the compiler
;; Guarantee that the compiler's package structure exists.
(if (not (name->package '(COMPILER)))
(begin
- ;; If there is no existing package constructor, generate one.
- (if (not (file-exists? "compiler.bco"))
- (begin
- ((access cref/generate-trivial-constructor
- (->environment '(CROSS-REFERENCE)))
- "compiler")
- (sf "compiler.con")))
- (load "compiler.bco")))
+ (if (not (file-exists? "compiler.pkd"))
+ (cref/generate-trivial-constructor "compiler"))
+ (construct-packages-from-file (fasload "compiler.pkd"))))
;; Guarantee that the necessary syntactic transforms and optimizers
;; are loaded.
(load (string-append file ".bin") package))
files))))
(load-option 'HASH-TABLE)
- (write-string "\n\n---- Loading compile-time files ----")
+ (fresh-line)
+ (newline)
+ (write-string "---- Loading compile-time files ----")
+ (newline)
(sf-and-load '("base/switch") '(COMPILER))
(sf-and-load '("base/macros") '(COMPILER MACROS))
((access initialize-package! (->environment '(COMPILER MACROS))))
(integrate-external "machin")
(usual-definition (set expt)))))
(sf-and-load '("machines/alpha/assmd") '(COMPILER ASSEMBLER)))
- (sf-and-load '("back/syntax")
- '(COMPILER LAP-SYNTAXER))
- (sf-and-load '("machines/alpha/coerce" "back/asmmac"
- "machines/alpha/insmac")
+ (sf-and-load '("back/syntax") '(COMPILER LAP-SYNTAXER))
+ (sf-and-load '("machines/alpha/coerce"
+ "back/asmmac"
+ "machines/alpha/insmac")
'(COMPILER LAP-SYNTAXER))
(sf-and-load '("base/scode") '(COMPILER))
(sf-and-load '("base/pmerly") '(COMPILER PATTERN-MATCHER/EARLY))
(in-package (->environment '(COMPILER LAP-SYNTAXER))
(if (and compiler:enable-expansion-declarations?
(null? early-instructions))
- (fluid-let ((load-noisily? false)
- (load/suppress-loading-message? false))
- (write-string "\n\n---- Pre-loading instruction sets ----")
+ (fluid-let ((load-noisily? #f)
+ (load/suppress-loading-message? #f))
+ (fresh-line)
+ (newline)
+ (write-string "---- Pre-loading instruction sets ----")
+ (newline)
(for-each (lambda (name)
(load (string-append "machines/alpha/" name ".scm")
'(COMPILER LAP-SYNTAXER)
((access syntax-files! (->environment '(COMPILER))))
;; Rebuild the package constructors and cref.
-(cref/generate-constructors "compiler")
-(sf "compiler.con")
-(sf "compiler.ldr")
\ No newline at end of file
+(cref/generate-constructors "compiler")
\ No newline at end of file
#| -*-Scheme-*-
-$Id: compiler.sf,v 1.18 1999/01/02 06:06:43 cph Exp $
+$Id: compiler.sf,v 1.19 2001/08/16 19:28:21 cph Exp $
-Copyright (c) 1988-1999 Massachusetts Institute of Technology
+Copyright (c) 1988-1999, 2001 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
|#
;;;; Script to incrementally syntax the compiler
;; Guarantee that the compiler's package structure exists.
(if (not (name->package '(COMPILER)))
(begin
- ;; If there is no existing package constructor, generate one.
- (if (not (file-exists? "compiler.bco"))
- (begin
- ((access cref/generate-trivial-constructor
- (->environment '(CROSS-REFERENCE)))
- "compiler")
- (sf "compiler.con")))
- (load "compiler.bco")))
+ (if (not (file-exists? "compiler.pkd"))
+ (cref/generate-trivial-constructor "compiler"))
+ (construct-packages-from-file (fasload "compiler.pkd"))))
;; Guarantee that the necessary syntactic transforms and optimizers
;; are loaded.
(load (string-append file ".bin") package))
files))))
(load-option 'HASH-TABLE)
- (write-string "\n\n---- Loading compile-time files ----")
+ (fresh-line)
+ (newline)
+ (write-string "---- Loading compile-time files ----")
+ (newline)
(sf-and-load '("base/switch") '(COMPILER))
(sf-and-load '("base/macros") '(COMPILER MACROS))
((access initialize-package! (->environment '(COMPILER MACROS))))
(usual-definition (set expt)))))
(sf-and-load '("machines/bobcat/assmd") '(COMPILER ASSEMBLER)))
(sf-and-load '("back/syntax") '(COMPILER LAP-SYNTAXER))
- (sf-and-load '("machines/bobcat/coerce" "back/asmmac"
- "machines/bobcat/insmac")
+ (sf-and-load '("machines/bobcat/coerce"
+ "back/asmmac"
+ "machines/bobcat/insmac")
'(COMPILER LAP-SYNTAXER))
(sf-and-load '("base/scode") '(COMPILER))
(sf-and-load '("base/pmerly") '(COMPILER PATTERN-MATCHER/EARLY))
(in-package (->environment '(COMPILER LAP-SYNTAXER))
(if (and compiler:enable-expansion-declarations?
(null? early-instructions))
- (fluid-let ((load-noisily? false)
- (load/suppress-loading-message? false))
- (write-string "\n\n---- Pre-loading instruction sets ----")
+ (fluid-let ((load-noisily? #f)
+ (load/suppress-loading-message? #f))
+ (fresh-line)
+ (newline)
+ (write-string "---- Pre-loading instruction sets ----")
+ (newline)
(for-each (lambda (name)
(load (string-append "machines/bobcat/" name ".scm")
'(COMPILER LAP-SYNTAXER)
((access syntax-files! (->environment '(COMPILER))))
;; Rebuild the package constructors and cref.
-(cref/generate-constructors "compiler")
-(sf "compiler.con")
-(sf "compiler.ldr")
\ No newline at end of file
+(cref/generate-constructors "compiler")
\ No newline at end of file
#| -*-Scheme-*-
-$Id: compiler.sf,v 1.12 2001/08/16 19:09:28 cph Exp $
+$Id: compiler.sf,v 1.13 2001/08/16 19:28:21 cph Exp $
Copyright (c) 1992-2001 Massachusetts Institute of Technology
;; Guarantee that the compiler's package structure exists.
(if (not (name->package '(COMPILER)))
(begin
- ;; If there is no existing package constructor, generate one.
(if (not (file-exists? "compiler.pkd"))
(cref/generate-trivial-constructor "compiler"))
(construct-packages-from-file (fasload "compiler.pkd"))))
(usual-definition (set expt)))))
(sf-and-load '("machines/i386/assmd") '(COMPILER ASSEMBLER)))
(sf-and-load '("back/syntax") '(COMPILER LAP-SYNTAXER))
- (sf-and-load '("machines/i386/coerce" "back/asmmac"
- "machines/i386/insmac")
+ (sf-and-load '("machines/i386/coerce"
+ "back/asmmac"
+ "machines/i386/insmac")
'(COMPILER LAP-SYNTAXER))
(sf-and-load '("base/scode") '(COMPILER))
(sf-and-load '("base/pmerly") '(COMPILER PATTERN-MATCHER/EARLY))
(in-package (->environment '(COMPILER LAP-SYNTAXER))
(if (and compiler:enable-expansion-declarations?
(null? early-instructions))
- (fluid-let ((load-noisily? false)
- (load/suppress-loading-message? false))
+ (fluid-let ((load-noisily? #f)
+ (load/suppress-loading-message? #f))
(fresh-line)
(newline)
(write-string "---- Pre-loading instruction sets ----")
#| -*-Scheme-*-
-$Id: compiler.sf-big,v 1.8 1999/01/02 06:06:43 cph Exp $
+$Id: compiler.sf-big,v 1.9 2001/08/16 19:28:21 cph Exp $
-Copyright (c) 1988-1999 Massachusetts Institute of Technology
+Copyright (c) 1988-1999, 2001 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
|#
;;;; Script to incrementally syntax the compiler
;; Guarantee that the compiler's package structure exists.
(if (not (name->package '(COMPILER)))
(begin
- ;; If there is no existing package constructor, generate one.
- (if (not (file-exists? "compiler.bco"))
- (begin
- ((access cref/generate-trivial-constructor
- (->environment '(CROSS-REFERENCE)))
- "compiler")
- (sf "compiler.con")))
- (load "compiler.bco")))
+ (if (not (file-exists? "compiler.pkd"))
+ (cref/generate-trivial-constructor "compiler"))
+ (construct-packages-from-file (fasload "compiler.pkd"))))
;; Guarantee that the necessary syntactic transforms and optimizers
;; are loaded.
(load (string-append file ".bin") package))
files))))
(load-option 'HASH-TABLE)
- (write-string "\n\n---- Loading compile-time files ----")
+ (fresh-line)
+ (newline)
+ (write-string "---- Loading compile-time files ----")
+ (newline)
(sf-and-load '("base/switch") '(COMPILER))
(sf-and-load '("base/macros") '(COMPILER MACROS))
((access initialize-package! (->environment '(COMPILER MACROS))))
(integrate-external "machin")
(usual-definition (set expt)))))
(sf-and-load '("machines/mips/assmd") '(COMPILER ASSEMBLER)))
- (sf-and-load '("back/syntax")
- '(COMPILER LAP-SYNTAXER))
- (sf-and-load '("machines/mips/coerce" "back/asmmac"
- "machines/mips/insmac")
+ (sf-and-load '("back/syntax") '(COMPILER LAP-SYNTAXER))
+ (sf-and-load '("machines/mips/coerce"
+ "back/asmmac"
+ "machines/mips/insmac")
'(COMPILER LAP-SYNTAXER))
(sf-and-load '("base/scode") '(COMPILER))
(sf-and-load '("base/pmerly") '(COMPILER PATTERN-MATCHER/EARLY))
(in-package (->environment '(COMPILER LAP-SYNTAXER))
(if (and compiler:enable-expansion-declarations?
(null? early-instructions))
- (fluid-let ((load-noisily? false)
- (load/suppress-loading-message? false))
- (write-string "\n\n---- Pre-loading instruction sets ----")
+ (fluid-let ((load-noisily? #f)
+ (load/suppress-loading-message? #f))
+ (fresh-line)
+ (newline)
+ (write-string "---- Pre-loading instruction sets ----")
+ (newline)
(for-each (lambda (name)
(load (string-append "machines/mips/" name ".scm")
'(COMPILER LAP-SYNTAXER)
((access syntax-files! (->environment '(COMPILER))))
;; Rebuild the package constructors and cref.
-(cref/generate-constructors "compiler")
-(sf "compiler.con")
-(sf "compiler.ldr")
\ No newline at end of file
+(cref/generate-constructors "compiler")
\ No newline at end of file
#| -*-Scheme-*-
-$Id: compiler.sf-little,v 1.8 1999/01/02 06:06:43 cph Exp $
+$Id: compiler.sf-little,v 1.9 2001/08/16 19:28:22 cph Exp $
-Copyright (c) 1988-1999 Massachusetts Institute of Technology
+Copyright (c) 1988-1999, 2001 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
|#
;;;; Script to incrementally syntax the compiler
;; Guarantee that the compiler's package structure exists.
(if (not (name->package '(COMPILER)))
(begin
- ;; If there is no existing package constructor, generate one.
- (if (not (file-exists? "compiler.bco"))
- (begin
- ((access cref/generate-trivial-constructor
- (->environment '(CROSS-REFERENCE)))
- "compiler")
- (sf "compiler.con")))
- (load "compiler.bco")))
+ (if (not (file-exists? "compiler.pkd"))
+ (cref/generate-trivial-constructor "compiler"))
+ (construct-packages-from-file (fasload "compiler.pkd"))))
;; Guarantee that the necessary syntactic transforms and optimizers
;; are loaded.
(load (string-append file ".bin") package))
files))))
(load-option 'HASH-TABLE)
- (write-string "\n\n---- Loading compile-time files ----")
+ (fresh-line)
+ (newline)
+ (write-string "---- Loading compile-time files ----")
+ (newline)
(sf-and-load '("base/switch") '(COMPILER))
(sf-and-load '("base/macros") '(COMPILER MACROS))
((access initialize-package! (->environment '(COMPILER MACROS))))
(integrate-external "machin")
(usual-definition (set expt)))))
(sf-and-load '("machines/mips/assmd") '(COMPILER ASSEMBLER)))
- (sf-and-load '("back/syntax")
- '(COMPILER LAP-SYNTAXER))
- (sf-and-load '("machines/mips/coerce" "back/asmmac"
- "machines/mips/insmac")
+ (sf-and-load '("back/syntax") '(COMPILER LAP-SYNTAXER))
+ (sf-and-load '("machines/mips/coerce"
+ "back/asmmac"
+ "machines/mips/insmac")
'(COMPILER LAP-SYNTAXER))
(sf-and-load '("base/scode") '(COMPILER))
(sf-and-load '("base/pmerly") '(COMPILER PATTERN-MATCHER/EARLY))
(in-package (->environment '(COMPILER LAP-SYNTAXER))
(if (and compiler:enable-expansion-declarations?
(null? early-instructions))
- (fluid-let ((load-noisily? false)
- (load/suppress-loading-message? false))
- (write-string "\n\n---- Pre-loading instruction sets ----")
+ (fluid-let ((load-noisily? #f)
+ (load/suppress-loading-message? #f))
+ (fresh-line)
+ (newline)
+ (write-string "---- Pre-loading instruction sets ----")
+ (newline)
(for-each (lambda (name)
(load (string-append "machines/mips/" name ".scm")
'(COMPILER LAP-SYNTAXER)
((access syntax-files! (->environment '(COMPILER))))
;; Rebuild the package constructors and cref.
-(cref/generate-constructors "compiler")
-(sf "compiler.con")
-(sf "compiler.ldr")
\ No newline at end of file
+(cref/generate-constructors "compiler")
\ No newline at end of file
#| -*-Scheme-*-
-$Id: compiler.sf,v 1.18 1999/01/02 06:06:43 cph Exp $
+$Id: compiler.sf,v 1.19 2001/08/16 19:28:22 cph Exp $
-Copyright (c) 1988-1999 Massachusetts Institute of Technology
+Copyright (c) 1988-1999, 2001 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
|#
;;;; Script to incrementally syntax the compiler
;; Guarantee that the compiler's package structure exists.
(if (not (name->package '(COMPILER)))
(begin
- ;; If there is no existing package constructor, generate one.
- (if (not (file-exists? "compiler.bco"))
- (begin
- ((access cref/generate-trivial-constructor
- (->environment '(CROSS-REFERENCE)))
- "compiler")
- (sf "compiler.con")))
- (load "compiler.bco")))
+ (if (not (file-exists? "compiler.pkd"))
+ (cref/generate-trivial-constructor "compiler"))
+ (construct-packages-from-file (fasload "compiler.pkd"))))
;; Guarantee that the necessary syntactic transforms and optimizers
;; are loaded.
(load (string-append file ".bin") package))
files))))
(load-option 'HASH-TABLE)
- (write-string "\n\n---- Loading compile-time files ----")
+ (fresh-line)
+ (newline)
+ (write-string "---- Loading compile-time files ----")
+ (newline)
(sf-and-load '("base/switch") '(COMPILER))
(sf-and-load '("base/macros") '(COMPILER MACROS))
((access initialize-package! (->environment '(COMPILER MACROS))))
(usual-definition (set expt)))))
(sf-and-load '("machines/spectrum/assmd") '(COMPILER ASSEMBLER)))
(sf-and-load '("back/syntax") '(COMPILER LAP-SYNTAXER))
- (sf-and-load '("machines/spectrum/coerce" "back/asmmac"
- "machines/spectrum/insmac")
+ (sf-and-load '("machines/spectrum/coerce"
+ "back/asmmac"
+ "machines/spectrum/insmac")
'(COMPILER LAP-SYNTAXER))
(sf-and-load '("base/scode") '(COMPILER))
(sf-and-load '("base/pmerly") '(COMPILER PATTERN-MATCHER/EARLY))
(in-package (->environment '(COMPILER LAP-SYNTAXER))
(if (and compiler:enable-expansion-declarations?
(null? early-instructions))
- (fluid-let ((load-noisily? false)
- (load/suppress-loading-message? false))
- (write-string "\n\n---- Pre-loading instruction sets ----")
+ (fluid-let ((load-noisily? #f)
+ (load/suppress-loading-message? #f))
+ (fresh-line)
+ (newline)
+ (write-string "---- Pre-loading instruction sets ----")
+ (newline)
(for-each (lambda (name)
(load (string-append "machines/spectrum/" name ".scm")
'(COMPILER LAP-SYNTAXER)
((access syntax-files! (->environment '(COMPILER))))
;; Rebuild the package constructors and cref.
-(cref/generate-constructors "compiler")
-(sf "compiler.con")
-(sf "compiler.ldr")
\ No newline at end of file
+(cref/generate-constructors "compiler")
\ No newline at end of file
#| -*-Scheme-*-
-$Id: compiler.sf,v 1.9 1999/01/02 06:06:43 cph Exp $
+$Id: compiler.sf,v 1.10 2001/08/16 19:28:22 cph Exp $
-Copyright (c) 1988-1999 Massachusetts Institute of Technology
+Copyright (c) 1988-1999, 2001 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
|#
;;;; Script to incrementally syntax the compiler
;; Guarantee that the compiler's package structure exists.
(if (not (name->package '(COMPILER)))
(begin
- ;; If there is no existing package constructor, generate one.
- (if (not (file-exists? "compiler.bco"))
- (begin
- ((access cref/generate-trivial-constructor
- (->environment '(CROSS-REFERENCE)))
- "compiler")
- (sf "compiler.con")))
- (load "compiler.bco")))
+ (if (not (file-exists? "compiler.pkd"))
+ (cref/generate-trivial-constructor "compiler"))
+ (construct-packages-from-file (fasload "compiler.pkd"))))
;; Guarantee that the necessary syntactic transforms and optimizers
;; are loaded.
(load (string-append file ".bin") package))
files))))
(load-option 'HASH-TABLE)
- (write-string "\n\n---- Loading compile-time files ----")
+ (fresh-line)
+ (newline)
+ (write-string "---- Loading compile-time files ----")
+ (newline)
(sf-and-load '("base/switch") '(COMPILER))
(sf-and-load '("base/macros") '(COMPILER MACROS))
((access initialize-package! (->environment '(COMPILER MACROS))))
(usual-definition (set expt)))))
(sf-and-load '("machines/vax/assmd") '(COMPILER ASSEMBLER)))
(sf-and-load '("back/syntax") '(COMPILER LAP-SYNTAXER))
- (sf-and-load '("machines/vax/coerce" "back/asmmac"
- "machines/vax/insmac")
+ (sf-and-load '("machines/vax/coerce"
+ "back/asmmac"
+ "machines/vax/insmac")
'(COMPILER LAP-SYNTAXER))
(sf-and-load '("base/scode") '(COMPILER))
(sf-and-load '("base/pmerly") '(COMPILER PATTERN-MATCHER/EARLY))
(in-package (->environment '(COMPILER LAP-SYNTAXER))
(if (and compiler:enable-expansion-declarations?
(null? early-instructions))
- (fluid-let ((load-noisily? false)
- (load/suppress-loading-message? false))
- (write-string "\n\n---- Pre-loading instruction sets ----")
+ (fluid-let ((load-noisily? #f)
+ (load/suppress-loading-message? #f))
+ (fresh-line)
+ (newline)
+ (write-string "---- Pre-loading instruction sets ----")
+ (newline)
(for-each (lambda (name)
(load (string-append "machines/vax/" name ".scm")
'(COMPILER LAP-SYNTAXER)
((access syntax-files! (->environment '(COMPILER))))
;; Rebuild the package constructors and cref.
-(cref/generate-constructors "compiler")
-(sf "compiler.con")
-(sf "compiler.ldr")
\ No newline at end of file
+(cref/generate-constructors "compiler")
\ No newline at end of file