[Ecls-list] Yet anothe ASDF iteration

David Creelman creelman.david at gmail.com
Sun May 11 11:39:03 UTC 2008


On Fri, May 09, 2008 at 03:36:46PM +0200, Juan Jose Garcia-Ripoll wrote:
> I forgot: Tag: (CVS 2008-05-09 15:30) Have a nice (off-line) weekend.
> 

Hi Juanjo,

I cleared off my previous build by doing :-
rm -rf /usr/local/lib/ecl
cd ~/.asdf-binaries
rm -rf *
cd (to the place I build ECL)
rm -rf build
cvs update -d -P
./configure --enable-unicode
make all
(wait a little while).
sudo make install

...Then I started ECL and did the following

;;; Loading #P"/usr/local/lib/ecl/asdf.fas"
;;; Loading #P"/usr/local/lib/ecl/cmp.fas"
;;; Loading #P"/usr/local/lib/ecl/sysfun.lsp"
ECL (Embeddable Common-Lisp) 0.9j (CVS 2008-05-09 15:30)
Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya
Copyright (C) 1993 Giuseppe Attardi
Copyright (C) 2000 Juan J. Garcia-Ripoll
ECL is free software, and you are welcome to redistribute it
under certain conditions; see file 'Copyright' for details.
Type :h for Help.  Top level.
> (asdf:operate 'asdf:load-op :cl-pdf)
Segmentation violation.
;Broken at EVAL.No restarts available.
Broken at LAMBDA.
ASDF0>>

My .eclrc is the following

(require 'asdf)

(defvar asdf::*binaries-root* "/home/dc/.asdf-binaries/")

(setf asdf::*require-asdf-operator* 'asdf:load-fasl-op)

(defmethod asdf:output-files :around ((op asdf:operation) (c asdf:component))
 "Method to rewrite output files to fasl-root"
 (flet ((remap-directory (pathname)
          (let ((d (pathname-directory pathname)))
            (make-pathname
             :directory (append (pathname-directory asdf::*binaries-root*)
                                (rest d))
             :defaults pathname))))
   (mapcar #'remap-directory (call-next-method))))

(setf asdf:*central-registry*
 (list '*default-pathname-defaults*
       #p"/home/dc/asdf-libs/"
       #p"/usr/local/lib/ecl/"))

The cl-pdf that I'm using  is the one that comes with debian.
There are no .fas or .o files in the cl-pdf folder.

This worked in the previous version of ecl. There is a dependency on iterate
for this package.

compiling the clx from sbcl crashes ecl.

Let me know if any more info is needed.

Cheers
David


> Juanjo
> 
> -- 
> Facultad de Fisicas, Universidad Complutense,
> Ciudad Universitaria s/n Madrid 28040 (Spain)
> http://juanjose.garciaripoll.googlepages.com
> 
> -------------------------------------------------------------------------
> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
> Don't miss this year's exciting event. There's still time to save $100. 
> Use priority code J8TL2D2. 
> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
> _______________________________________________
> Ecls-list mailing list
> Ecls-list at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ecls-list




More information about the ecl-devel mailing list