Skip to content
Snippets Groups Projects
Commit 52a1a069 authored by dtc's avatar dtc
Browse files

Don't purify after loading packages with GENCGC as it's broken and

moving the objects to an old generation works better.
parent bd075b4b
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/clmcom.lisp,v 1.18 1994/11/02 17:39:58 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/clmcom.lisp,v 1.19 1997/11/04 16:29:36 dtc Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -23,7 +23,8 @@
#-clx
(progn
(load "target:clx/clx-library")
(ext:purify))
#+gencgc (gc :full t)
#-gencgc (ext:purify))
(pushnew :motif *features*)
......
......@@ -10,7 +10,8 @@
#+(and (not pcl) (not no-pcl-clx))
(progn
(load "target:pcl/pclload")
(ext:purify))
#+gencgc (gc :full t)
#-gencgc (ext:purify))
(pushnew :clx-ansi-common-lisp *features*)
......
......@@ -44,7 +44,8 @@
#+(and (not pcl) (not no-pcl-clx))
(load "target:pcl/pclload")
(load "target:clx/clx-library")
(ext:purify))
#+gencgc (gc :full t)
#-gencgc (ext:purify))
(with-compiler-log-file
("target:compile-hemlock.log"
......
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