Skip to content
Snippets Groups Projects
Commit 2a8147be authored by toy's avatar toy
Browse files

Disable package locks when rebuilding the various parts of CMUCL.

parent 6d25ad50
No related branches found
No related tags found
No related merge requests found
;;; -*- Package: User -*-
;;; -*- Package: CL-USER -*-
;;;
;;; **********************************************************************
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/comcom.lisp,v 1.55 2003/06/18 09:23:08 gerd Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/comcom.lisp,v 1.56 2003/09/08 16:07:04 toy Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -51,6 +51,8 @@
(:external (declare (optimize-interface (safety 2) (debug 1))))))
(setf lisp::*enable-package-locked-errors* nil)
(comf "target:compiler/macros"
:byte-compile #+bootstrap t #-bootstrap *byte-compile*)
(when *load-stuff*
......
......@@ -3,11 +3,12 @@
;;; **********************************************************************
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/pclcom.lisp,v 1.31 2003/06/18 10:50:14 gerd Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/pclcom.lisp,v 1.32 2003/09/08 16:07:04 toy Exp $")
;;;
;;; **********************************************************************
;;;
(in-package "CL-USER")
(setf lisp::*enable-package-locked-errors* nil)
(when (find-package "PCL")
;; Load the lisp:documentation functions.
......
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldbuild.lisp,v 1.49 2003/05/23 13:34:04 gerd Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldbuild.lisp,v 1.50 2003/09/08 16:07:04 toy Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -16,6 +16,8 @@
(in-package "LISP")
(setf *enable-package-locked-errors* nil)
(unless (fboundp 'genesis)
(load "target:compiler/generic/new-genesis"))
......
;;; -*- Package: USER -*-
;;; -*- Package: CL-USER -*-
;;;
;;; **********************************************************************
;;; This code was written as part of the CMU Common Lisp project at
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.89 2003/06/18 11:07:40 gerd Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.90 2003/09/08 16:07:04 toy Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -36,7 +36,8 @@
(declare (optimize (safety 2))))
((:and :external (:match "LIST"))
(declare (optimize (safety 1))))))
(let ((*byte-compile-top-level* nil))
(let ((*byte-compile-top-level* nil)
(lisp::*enable-package-locked-errors* nil))
;;; these guys need to be first.
(comf "target:code/struct") ; For structures.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment