[Ecls-list] ECL performance with respect to OpenAxiom

2012-10-30 Thread Gabriel Dos Reis
Hi Juanjo,

I've reported, on several occasions, in the past that
an ECL-based build of OpenAxiom takes a very long time
(usually over 2 or 4 hours.)   Well, with current CVS
mainline, ECL builds OpenAxiom about 20min on my machine.
It could be argued that it is just a better machine, but on the
same machine SBCL takes approximately the same time.
So, whatever you've done lately, that was great!  (Is it because
of better IO or GC implementation?)  I thought I should
report that impressive improvement :-)

Now, if only debugging with ECL could be just as pleasant
as with SBCL... ;-)

-- Gaby

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
Ecls-list mailing list
Ecls-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecls-list


Re: [Ecls-list] SLIME, WITH-OPEN-FILE: error in process filter: Wrong number of arguments: nil, 127

2012-10-30 Thread Juan Jose Garcia-Ripoll
On Tue, Oct 30, 2012 at 2:41 AM, Matthew Mondor mm_li...@pulsar-zone.netwrote:

 With in swank-ecl.lisp:

 (defimplementation arglist (name)
   (let ((arglist (ext:get-annotation name :lambda-list nil)))
 (if (null arglist)
 :not-available
 arglist)))

 And your latest changes, it's very nice so far.


The original code works for me just fine

(defimplementation arglist (name)
  (multiple-value-bind (arglist foundp)
  (ext:function-lambda-list name)
(if foundp arglist :not-available)))

Does it not in your system?

Juanjo

-- 
Instituto de FĂ­sica Fundamental, CSIC
c/ Serrano, 113b, Madrid 28006 (Spain)
http://juanjose.garciaripoll.googlepages.com
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct___
Ecls-list mailing list
Ecls-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecls-list


Re: [Ecls-list] SLIME, WITH-OPEN-FILE: error in process filter: Wrong number of arguments: nil, 127

2012-10-30 Thread Matthew Mondor
On Tue, 30 Oct 2012 11:50:17 +0100
Juan Jose Garcia-Ripoll juanjose.garciarip...@gmail.com wrote:

 The original code works for me just fine
 
 (defimplementation arglist (name)
   (multiple-value-bind (arglist foundp)
   (ext:function-lambda-list name)
 (if foundp arglist :not-available)))
 
 Does it not in your system?

I confirm it works fine again, thanks!
-- 
Matt

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
Ecls-list mailing list
Ecls-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecls-list