C Y wrote:
> Without truename on 9-13 cmucl the build proceeds, but wipes out with
[snip]
> Error in function OPEN:
> Error creating
> #p"numerical/binary-cmucl/numerical/f2cl-package.x86f", path does not
> exist.
Ok. I screwed up. The truename was just plain stupid because the
directory binary-cmucl might not exist yet. Can you try the following
change in maxima.system?
(mk:defsystem "maxima"
:source-extension "lisp"
:binary-pathname #+clisp "binary-clisp"
#+cmu (merge-pathnames "binary-cmucl"
(pathname (concatenate 'string
(nth-value 1 (unix:unix-current-directory))
"/")))
Then binary-pathname for cmu is different now.
Let me know how it goes,
Ray