Tagged Questions
The asdf tag has no wiki summary.
6
votes
2answers
340 views
Problems with ltk (common lisp)
I installed ltk to Steel Bank Common Lisp with asdf-install, but I can't even start using it V_V. The code below is the simplest example in the documentation, and is copied almost verbatim.
...
4
votes
3answers
143 views
Using asdf can I load a system providing only previously made FASLs
I have a development machine and a production machine which are identical (Copy of a vm image).
I want to deliver the application to the production machine along with the asd file but I don't want to ...
4
votes
2answers
222 views
asdf-installing libraries from the command-line
Coming from a Perl background, I have to say I prefer cpan Foo::Bar to the having to start sbcl, (require :asdf-install) and finally (asdf-install:install :foo-bar). Is there anything more convenient ...
3
votes
1answer
94 views
How to install new packages for common lisp without asdf-install
I am new to cl, and I just learned to install packages using asdf-install, but I don't know how it works, I wonder how the package can be installed manully, then I could understand the use of the ...
3
votes
2answers
152 views
clisp 2.49: asdf cannot find asd
My setup is:
Windows Vista
clisp 2.49
I run clisp and load asdf without any problems.
I push a directory pathname into asdf:*central-registry* and copy a shortcut of cl-ppcre.asd into the directory. ...
3
votes
1answer
641 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 = ...
3
votes
5answers
338 views
ASDF or other module system independent of home and site configurations
I'm trying to find out the best practices for real-world application development. I'm having trouble understanding how to properly configure third-party libraries for deployment as a standalone ...
3
votes
4answers
1k views
How do I use (require :PACKAGE) in clisp under Ubuntu Hardy?
I am trying to evaluate the answer provided here, and am getting the error: "A file with name ASDF-INSTALL does not exist" when using clisp:
dsm@localhost:~$ clisp -q
[1]> (require :asdf-install)
...
2
votes
2answers
361 views
cffi installation
I'm trying to install cffi package into sbcl.
First, I tried clbuild that is recommended on the cffi installation page.
When I tried to run :
clbuild quickload cffi
I was given an error saying :
...
2
votes
2answers
140 views
ASDF-Install: Error: component “zip” not found
I'm trying to install the zip library.
wonko:Desktop andrew$ alisp
International Allegro CL Free Express Edition
8.2 [Mac OS X (Intel)] (Jan 25, 2010 14:49)
Copyright (C) 1985-2010, Franz Inc., ...
2
votes
2answers
408 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 ...
2
votes
2answers
200 views
2
votes
5answers
419 views
Automatically create ASDF files for a Common Lisp project
Are there any libraries out there that do this? Playing around with Common Lisp it seems like this would be one of the most useful things to lower barrier of entry for newcomers. ASDF seems mostly ...
1
vote
1answer
115 views
Quicklisp loads library but is nowhere to be found in *features*
Today I installed cl-html-parse with Quicklisp but when I load it the library is nowhere to be found in the features list, what's going on?
I thought that it may have been a bug with Quicklisp so I ...
1
vote
1answer
157 views
asdf-install missing component
I'm having a weird issue with asdf-install.
* (require :asdf-install)
("ASDF-INSTALL")
* (asdf-install:install :split-sequence)
...
Installing /Users/zcai/.sbcl/SPLIT-SEQUENCE.asdf-install-tmp in ...
1
vote
2answers
105 views
Trying to load trivial-shell by ASDF on Mac OS X
I'm trying to load trivial-shell on Mac OS X.
When I execute the following command:
(asdf:oos 'asdf:load-op :trivial-shell)
I get the following error:
decoding error on stream
...
0
votes
0answers
28 views
Flex/LCDS Server-to-data-source Paging [closed]
Possible Duplicate:
Flex/LCDS Server-to-data-source Paging
29
votes
1answer
1k views
Flex/LCDS Server-to-data-source Paging
I’m trying to set up a server to data-source paged service. I’ve ...
0
votes
2answers
148 views
Issues with ASDF on Clisp
I'm trying to install s-xml (I'm heading towards s-xml-rpc) on clisp 2.49 on os x. I think I've got asdf install correctly. I can run:
(asdf:asdf-version)
"2.014"
so I guess that bits ...