From: eliot
Subject: cmucl + mcClim on fedora?
Date: 
Message-ID: <0ugp00huci1j5pc7faeov5ro9doqd40vgt@4ax.com>
Has anyone got mcclim running with cmucl on fedora?
I've been trying this, but during compile of design.lisp
some sort of error is thrown that gets cmucl into an
<#error-printing-object> loop.  

thanks for hints,

-- eliot

From: Timothy Moore
Subject: Re: cmucl + mcClim on fedora?
Date: 
Message-ID: <wdr3caazyau.fsf@trousse.labri.fr>
eliot <·····@generation.net> writes:

> Has anyone got mcclim running with cmucl on fedora?
> I've been trying this, but during compile of design.lisp
> some sort of error is thrown that gets cmucl into an
> <#error-printing-object> loop.  
> 
> thanks for hints,
> 
> -- eliot
More information, please. Also, sending mail to the McCLIM mailing
list (free-clim at mikemac.com) would probably be more helpful.

Tim
From: eliot
Subject: Re: cmucl + mcClim on fedora?
Date: 
Message-ID: <p7kr009ress39fuqkfdn1oas4f0gc8qk8m@4ax.com>
On 20 Jan 2004 11:53:13 +0100, Timothy Moore <·····@trousse.labri.fr>
wrote:

>eliot <·····@generation.net> writes:
>
>> Has anyone got mcclim running with cmucl on fedora?
>> I've been trying this, but during compile of design.lisp
>> some sort of error is thrown that gets cmucl into an
>> <#error-printing-object> loop.  
>> 
>> thanks for hints,
>> 
>> -- eliot
>More information, please. Also, sending mail to the McCLIM mailing
>list (free-clim at mikemac.com) would probably be more helpful.
>
>Tim

The machine is an old K7 166Mhz, with 64 meg RAM, which obviously
isn't enough.  I couldn't get CMUCL to compile. It compiled and loaded
with sbcl, which ran the clx demos, but not the McCLIM demos.  I
assume upgrade is needed but at the same time I'm wondring what McCLIM
experiences with fedora have been like. Is it dependable enough to
involve in a project with a lot of code?  

-- eliot
From: yugoishimaru
Subject: Re: cmucl + mcClim on fedora?
Date: 
Message-ID: <401a34c0$0$19835$44c9b20d@news2.asahi-net.or.jp>
I have a same travle.
I use cmucl18e + mcclim on fedora core1.
And I got error during compile "design.lisp"
The error messages are:

-----------------------------------------------------
; Python version 1.1, VM version Intel x86 on 30 JAN 04 07:04:48 pm.
; Compiling: /home/yugo/common-lisp/McCLIM/design.lisp 29 MAY 03 04:27:51 am

; Compiling Load Time Value of (PCL::FIND-CLASS-CELL 'DESIGN):
; Compiling DEFINE-PROTOCOL-CLASS DESIGN:
; Compiling Top-Level Form:
(*snip*)
; Compiling DEFUN MAKE-CONTRASTING-INKS:
; Compiling Load Time Value of (PCL::GET-MAKE-INSTANCE-FUNCTION-SYMBOL
                     '(INDIRECT-INK NIL NIL)):
; Compiling Load Time Value of (PCL::GET-MAKE-INSTANCE-FUNCTION-SYMBOL
                     '(INDIRECT-INK NIL NIL)):
; Byte Compiling Top-Level Form:

Error in KERNEL::UNBOUND-SYMBOL-ERROR-HANDLER:  the variable 
+FOREGROUND-INK+ is unbound.

Restarts:
   0: [ABORT] Return to Top-Level.

Debug  (type H for help)

(EVAL +FOREGROUND-INK+)
Source: Error finding source:
Error in function DEBUG::GET-FILE-TOP-LEVEL-FORM:  Source file no longer 
exists:
   target:code/eval.lisp.
0]
----------------------------------------------------

Can anyone understand the error?

eliot wrote:
> Has anyone got mcclim running with cmucl on fedora?
> I've been trying this, but during compile of design.lisp
> some sort of error is thrown that gets cmucl into an
> <#error-printing-object> loop.  
> 
> thanks for hints,
> 
> -- eliot
From: Timothy Moore
Subject: Re: cmucl + mcClim on fedora?
Date: 
Message-ID: <wdrptd1vegt.fsf@trousse.labri.fr>
yugoishimaru <····@zoo.email.ne.jp> writes:

> I have a same travle.
> I use cmucl18e + mcclim on fedora core1.
> And I got error during compile "design.lisp"
> The error messages are:
> 
...
> Error in KERNEL::UNBOUND-SYMBOL-ERROR-HANDLER:  the variable
> +FOREGROUND-INK+ is unbound.
> 
...
> 
> Can anyone understand the error?
> 
> eliot wrote:
> > Has anyone got mcclim running with cmucl on fedora?
> > I've been trying this, but during compile of design.lisp
> > some sort of error is thrown that gets cmucl into an
> > <#error-printing-object> loop.  thanks for hints,

This sounds like you compiled clocc to get defsystem, but then didn't check
the values of pcl::*defclass-times*, pcl::*defmethod-times* and
pcl::*defgeneric-times*, as described in INSTALL.CMU.

Tim
From: yugoishimaru
Subject: Re: cmucl + mcClim on fedora?
Date: 
Message-ID: <401a5336$0$19839$44c9b20d@news2.asahi-net.or.jp>
Thank you.
I used defsystem in CLOCC without realizing.
I tried evaluating this expression
(setf pcl::*defclass-times* '(load eval)
	pcl::*defmethod-times* '(load eval)
	pcl::*defgeneric-times* '(load eval))
And mcclim could be compiled and runs without error.

Timothy Moore wrote:
> yugoishimaru <····@zoo.email.ne.jp> writes:
> 
> 
>>I have a same travle.
>>I use cmucl18e + mcclim on fedora core1.
>>And I got error during compile "design.lisp"
>>The error messages are:
>>
> 
> ...
> 
>>Error in KERNEL::UNBOUND-SYMBOL-ERROR-HANDLER:  the variable
>>+FOREGROUND-INK+ is unbound.
>>
> 
> ...
> 
>>Can anyone understand the error?
>>
>>eliot wrote:
>>
>>>Has anyone got mcclim running with cmucl on fedora?
>>>I've been trying this, but during compile of design.lisp
>>>some sort of error is thrown that gets cmucl into an
>>><#error-printing-object> loop.  thanks for hints,
> 
> 
> This sounds like you compiled clocc to get defsystem, but then didn't check
> the values of pcl::*defclass-times*, pcl::*defmethod-times* and
> pcl::*defgeneric-times*, as described in INSTALL.CMU.
> 
> Tim