Error loading SBCL contribs

2016-05-08 Thread Stelian Ionescu
I think SBCL commit 25c1769e30ff7404b52a9be663626d87f8ff75bc broke the use of deferred warnings. If I compile SBCL and exec ./run-sbcl.sh, I get this error during Quicklisp initialization: ; file: /home/hechee/lisp/quicklisp/quicklisp/impl.lisp ; in: DEFINE-IMPLEMENTATION-PACKAGE :SBCL ; (REQU

Re: How to fix arnesi:clean-op.

2016-05-08 Thread Ian Tegebo
On Sun, May 8, 2016 at 11:28 AM, Faré wrote: > clean-op is an impossible operation to fix, because its meaning isn't > defined in general, and CANNOT be defined in general. And while some > specific subsets and variants of it CAN be defined, they remain so > specific as to not be of general purpo

Re: How to fix arnesi:clean-op.

2016-05-08 Thread Faré
Dear ta2gch, On Sun, May 8, 2016 at 10:50 AM, TANIGUCHI Masaya wrote: > I want to do "make clean" on ASDF. > I tried to use clean-op of ARNESI. > > I got a following message, [...] > > How to fix it? > This is a simple question that unhappily has no answer. My apologies if my following non-answe

Re: How to fix arnesi:clean-op.

2016-05-08 Thread 73budden .
Hi! Maybe :force works well now, but I had problems with it in the past (don't remember which problems exactly). TANIGUCHI Masaya, you can consult asdf source as the "canonical" example of operations.

Re: How to fix arnesi:clean-op.

2016-05-08 Thread TANIGUCHI Masaya
Hi Budden! I see I can only do that with shell or batch. I would like to confirm, is it possible to create new operation for ASDF 3.1 regardless of cleaning up .fasl files? I googled, but there is no particular code to create new operation for an asdf manual but there is a section for creating

Re: How to fix arnesi:clean-op.

2016-05-08 Thread Robert P. Goldman
I'll look into this a bit. I'd be happy to see clean-op incorporated in ASDF. Note that budden's response about using touch is not necessary. To force a recompile one can simply use :force Sent from my iPhone > On May 8, 2016, at 09:50, TANIGUCHI Masaya wrote: > > I want to do "make clean"

Re: How to fix arnesi:clean-op.

2016-05-08 Thread 73budden .
Hi Masaya, list! I use batch file which deletes all fasl files to do complete cleanup. If I wanted to force recompilation of a particular system, I would just "touch" all files. See also https://en.wikibooks.org/wiki/Common_Lisp/External_libraries/ASDF/Budden's_infrequently_asked_questions -

How to fix arnesi:clean-op.

2016-05-08 Thread TANIGUCHI Masaya
I want to do "make clean" on ASDF. I tried to use clean-op of ARNESI. I got a following message, WARNING: No dependency propagating scheme specified for operation class IT.BESE.ARNESI:CLEAN-OP. The class needs to be updated for ASDF 3.1 and specify appropriate propagation mixins. # # De