[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Compiling PCL under KCL.



I believe that this is not a bug, but rather just the way PCL compiles.
The purpose of the files pcl/precom2.lisp and pcl/precom4.lisp is to
prevent this compilation of small files from happening at load time.
It is not an infinite loop that you are seeing: each time it compiles
gazonk0.lisp it is compiling a different function.  If it really bothers
you, add the line:
(eval-when (compile) (setq *compiler-present-p* nil))
to the file kcl-low.lisp.

Richard Harris