Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (265 - 267 of 1030)

Ticket Resolution Summary Owner Reporter
#989 fixed CCL should support "hard-float" calling conventions on ARM Gary Byers
Description

As of this writing, there's some support for this in the trunk.

#988 invalid armhf: FLOATING-POINT-INVALID-OPERATION signalled when LOG called with base Julian Squires
Description

On Debian/armhf:

julian@ash:~% uname -a
Linux ash 2.6.31.14.27-efikamx #1 Sun Mar 18 20:13:21 EDT 2012 armv7l GNU/Linux
julian@ash:~% ccl
Welcome to Clozure Common Lisp Version 1.8-r15286M  (LinuxARM32)!
? (log 42 2)
> Error: FLOATING-POINT-INVALID-OPERATION detected
>        performing COERCE on (NIL)
> While executing: CCL::/-2, in process listener(1).
> Type :POP to abort, :R for a list of available restarts.
> Type :? for other options.
#986 worksforme NSColorPanel is not a class. Pascal Bourguignon
Description

NSWindow and a number of other Objective-C classes are mapped to symbols in the NS package in ccl::*lisp-classname-table*:

cl-user> (apropos "NS-WINDOW")
ns:+ns-window,  Value: #<objc:objc-metaclass ns:+ns-window (#x1D7D7A8)>
 ns:ns-window,  Value: #<objc:objc-class ns:ns-window (#x1D7D7D0)>
ns:+ns-window-controller,  Value: #<objc:objc-metaclass ns:+ns-window-controller (#x1D7D988)>
 ns:ns-window-controller,  Value: #<objc:objc-class ns:ns-window-controller (#x1D7D9B0)>
; No value
cl-user> (gethash "NSWindow" ccl::*lisp-classname-table*)
ns:ns-window
t

but not NSColorPanel:

cl-user> (apropos "NS-COLOR-PANEL")
 ns:ns-color-panel,  Value: #<objc:objc-class ns:ns-color-panel (#x1D73280)>
ns:+ns-color-panel,  Value: #<objc:objc-metaclass ns:+ns-color-panel (#x1D73258)>
; No value
cl-user> (gethash "NSColorPanel" ccl::*lisp-classname-table*)
"NS-COLOR-PANEL"
t

even after instantiating a NSColorPanel:

cl-user> (#/sharedColorPanel ns:ns-color-panel)
#<ns-color-panel <NSColorPanel: 0x31ae720> (#x31AE720)>
cl-user> (gethash "NSColorPanel" ccl::*lisp-classname-table*)
"NS-COLOR-PANEL"
t
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.