-
according to this page http://ecls.sourceforge.net/new-manual/ch16s02.html
:source-extension should be a supported tag of defsystem, but I've discovered it is not
I get this when I try to build the example program I've included as an attachment - note that with standard .lisp extension it works
da@daxtron:/PRJ/ecl/debug-extension$ ecl -shell build.lsp
;;; Loading...
2009-07-04 11:06:32 UTC in Embeddable Common-Lisp
-
I have Ubuntu Jaunty 32 bit
While trying to compile the asdf example in example/asdf/ I discovered some problems - I place here the modified version, look for OLD & WRONG comments
NB: One of the problems is probably related to my platform: the readme.lisp on my system generates an example.fasb (is it a bytecoded file") and file1.fas file2.fas files when calling (asdf:make-build :example...
2009-07-04 06:02:27 UTC in Embeddable Common-Lisp
-
I've tried to use in the REPL some of the character names that are reported in ecl documentation here
http://ecls.sourceforge.net/new-manual/ch07s02.html
I noticed #\Escape, #\Null and #\Bell don't work
I'm using last git ecl version on Ubuntu jaunty 32 bit
* da@daxtron:~$ ecl
ECL (Embeddable Common-Lisp) 9.6.2
Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya
Copyright (C) 1993...
2009-07-02 20:40:03 UTC in Embeddable Common-Lisp
-
I previously reported this bug here
http://sourceforge.net/tracker/?func=detail&aid=2809336&group_id=30035&atid=398053
Today I updated my git repo of ecl and tried to compile the test case I've already posted but I still get the same error:
da@daxtron:/PRJ/ecl/debug-case$ ecl
ECL (Embeddable Common-Lisp) 9.6.2
Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya
Copyright (C) 1993...
2009-07-01 16:57:30 UTC in Embeddable Common-Lisp
-
if I give this commands
(IN-PACKAGE :CL-USER)
(SETF (READTABLE-CASE *READTABLE*) :PRESERVE)
(PRINT "ciao")
(COMPILE-FILE "second.lsp")
"ciao" gets printed but whan calling COMPILE-FILE I get this (second.lsp is just an empty file):
-------------------------------------------------------------------------------------------------------------------
* da@daxtron:/PRJ/ecl/debug-case$ ecl.
2009-06-20 01:40:01 UTC in Embeddable Common-Lisp
-
btw, I have Ubuntu Intrepid.
2009-05-12 09:05:50 UTC in ArmedBear / J
-
It seems like that setting case preserving works only until another file is loaded
I have this two files which are a stripped down version of qi build files:
install.lsp
--------------------------------------------------------------------
(DEFUN TEST-CASE ()
(IF (EQ 'a 'A)
(FORMAT T "case is NOT preserved~%")
(FORMAT T "case is preserved~%")))
(SETF...
2009-05-12 09:04:21 UTC in ArmedBear / J
-
Maybe are you trying to build ogre4j-1.6.0-beta6 against ogre 1.6.1 sources? Here is the solution I found for the allocator problem on my ubuntu;
http://sourceforge.net/forum/message.php?msg_id=6311095.
2009-05-11 19:01:39 UTC in ogre4j
-
Ok - I solved the problem - I found out that in the Andrew Fenn repo there isn't really the 1.6.0 version of ogre - must be some previous dev version - hence the errors. As for building ogre4j-1.6.0-beta6 against ogre 1.6.1 sources, the problem is that in version 1.6.1 of ogre the ned memory allocator is the default one while the std was used in 1.6.0 . I thought that building against a 1.6.1...
2009-01-31 17:06:29 UTC in ogre4j
-
>Currently nobody works on AWT support for more platforms.
Well, last days I've tried to get awt working on ubuntu intrepid with ogre 1.4.9 - I've managed to show the cake of HelloWorld in the AWT canvas - too bad when canvas.paint(getGraphics()); or renderWindow.update() is called I get a crash in libGL.so.1
For what I saw around (especially in the wxOgre example in the Ogre wiki) I...
2009-01-26 13:27:23 UTC in ogre4j