Skip to content
Snippets Groups Projects
Commit 8995b064 authored by ram's avatar ram
Browse files

Added note about needing (load (open ...)).

parent d1202856
No related branches found
No related tags found
No related merge requests found
...@@ -7,13 +7,23 @@ ...@@ -7,13 +7,23 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldload.lisp,v 1.29 1991/06/10 16:33:43 chiles Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldload.lisp,v 1.30 1991/07/11 14:58:15 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; This file loads the parts of the system that aren't cold loaded and saves ;;; This file loads the parts of the system that aren't cold loaded and saves
;;; the resulting core image. It writes "lisp.core" in the DEFAULT-DIRECTORY. ;;; the resulting core image. It writes "lisp.core" in the DEFAULT-DIRECTORY.
;;; ;;;
;;; ####### NOTE: HACK ALERT!!!!
;;;
;;; This file must be loaded by:
;;; (load (open "...worldload.lisp"))
;;;
;;; The OPEN call is needed to prevent the stream buffer from the previous
;;; incarnation (which is no longer valid) from being added to the stream
;;; buffer freelist. If you don't do this, you will probably get a memory
;;; access violation when you first try to do file I/O in the new core.
;;;
;;; Define a bunch of search lists relative to lisp: ;;; Define a bunch of search lists relative to lisp:
;;; ;;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment