The ecl tag has no wiki summary.
5
votes
1answer
900 views
Has anyone got any code examples of ECL Lisp for Iphone development?
I found out about Lisp for the Iphone recently and wanted to find some code examples.
https://github.com/TerjeNorderhaug/ecl-iphone-builder/#readme
3
votes
1answer
650 views
How can ECL include ASDF dependencies in an executable?
I have this ecl-make.lisp:
(asdf:oos 'asdf:compile-op :stumpwm)
(defun system-objects (system)
(loop for component in (asdf:module-components (asdf:find-system system))
for pathname = ...
2
votes
2answers
81 views
Saving lisp state
I am a beginner in lisp and have a question.
When I writing some code directly in REPL (without any .lisp file!), how can I save my work/state of the interpreter to restore it next time and continue ...
2
votes
2answers
416 views
How can ecl include asdf dependencies in an executable? (take 2)
This question was asked and answered by ayrnieu at
http://stackoverflow.com/questions/580083/how-can-ecl-include-asdf-dependencies-in-an-executable
But the example code he linked to does not ...
1
vote
1answer
20 views
emacs shell: type once, run everywhere
Within emacs, I want to have multiple shells open, type a command once, and have it run in each shell -- similar to the way multixterm ( http://freecode.com/projects/multixterm ) does.
1
vote
2answers
210 views
Compiling ECL 11.1.1 on Mac OS X 10.7 (Lion)
I have been trying to build ECL under OS X 10.7 and I have been
running into trouble. When I try building it I end up getting a
segfault on the ecl_min stage.
I configure with the following line:
...
1
vote
3answers
607 views
Cannot install google plugin for eclipse 3.7
I used this link http://dl.google.com/eclipse/plugin/3.7
When installing, an error message appeared, is said that
An error occurred while collecting items to be installed
session context ...
0
votes
1answer
91 views
Embedded ECL lisp error handling
Task: Embed ECL lisp in my project, setup error handling and detailed error reporting (where occurred, kind of error, etc.)
I tried to do that such way:
cl_def_c_function_va(
...