Skip to content
Snippets Groups Projects
Commit 6ce1b6aa authored by ram's avatar ram
Browse files

Moved load of room to after compiler, and made it conditional on the

no-compiler features, since it depends on the VM object format database.
parent 6e9c53ff
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldload.lisp,v 1.23 1991/05/04 15:15:34 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldload.lisp,v 1.24 1991/05/06 13:31:21 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -75,7 +75,6 @@
(load "code:rand")
(load "code:trace")
(load "code:profile")
(load "code:room")
(load "code:weak")
(load "code:sysmacs")
(load "code:pprint")
......@@ -90,6 +89,10 @@
;;; Load the compiler.
#-no-compiler
(load "c:loadcom.lisp")
#-no-compiler
;;; Depends on backend definition for object format info...
(load "code:room")
;;; Load the pretty printer after the compiler, 'cause it compiles stuff
;;; at load time.
......
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