ccl Questions
2
Solved
I am trying to compile a source code in my BeagleBoard with Angstrom Linux.
Yesterday I was able to compile my code. But today I can not compile the code and it says:
ccl: out of memory allocating...
2
Solved
64-bit Windows 7
Clozure Common Lisp Version 1.9 WindowsX8632
Emacs 24.3.1
Slime changelog date 2014-06-17
I have an example .lisp file which starts out as follows:
(ql:quickload 'qt)
(in-pac...
Lagoon asked 23/11, 2014 at 22:45
5
Solved
I've done a bit of research on this subject and am turning up blanks. There seem to be implementation-dependent ways of doing Unix signal handling in Common Lisp, but is there a package that gives ...
Desexualize asked 30/3, 2012 at 21:33
4
I would like to undefine a class and all of its methods but after a quite thorough search on Googlore I have been unable to find a clue about how to do this.
I am using an implementation of Commmo...
Scansorial asked 4/9, 2013 at 16:28
6
Solved
In clisp, the following code works:
(defun hit-history () (shell "tail ssqHitNum.txt"))
However, in Clozure CL, the shell function is not supported!
Selassie asked 11/10, 2011 at 3:24
3
Solved
I want to run a CCL REPL from a command line. What should I do to prevent CCL from starting that GUI thing (the menu and the listener window)? Thanks.
Prinz asked 8/3, 2012 at 1:35
1
Solved
In common lisp, what can I use to access structure slot using slot name/symbol?
What I want is
(defstruct point (x 0) (y 0))
(defmacro -> (struct slot) `(slot-value ,struct ,slot))
(setf p (...
Ticking asked 22/6, 2013 at 5:14
1
Solved
I saved this simple program
(defun hello-world ()
(format t "Hello, world"))
(defun main ()
(hello-world))
using ccl:save-application
(ccl:save-application "test"
:toplevel-function #'main...
Woodshed asked 17/6, 2012 at 20:26
2
Solved
I have a very small program which opens a socket and accepts a connection. It then grabs the remote IP and port.
I'd like to send a text message to the remote computer (telnet) and close the conne...
Amberambergris asked 6/10, 2009 at 10:58
1
Solved
I'm trying to run the ray tracing code form Paul Graham's ANSI Common Lisp on OS X using SLIME with OpenMCL (well, now called CCL). In that code, there's a constant defined whose value is a structu...
Barthelemy asked 6/12, 2008 at 20:4
1
© 2022 - 2024 — McMap. All rights reserved.