Questions tagged [quicklisp]

Quicklisp is a library manager for Common Lisp

Quicklisp is a library manager for Common Lisp written by Zach Beane.

Information on it, including how it can be installed, can be found on its website

161 questions
0
votes
1 answer

Loading quicklisp package for use in another lisp file

I have downloaded a large software project FriCAS which I have compiled from source and using SBCL. This was just a matter of using GNU .configure - I am a complete Lisp newbie. However, in order to add some further functionality I have - by very…
Alasdair
  • 1,300
  • 4
  • 16
  • 28
0
votes
1 answer

SBCL - Package lock all Quicklisp libraries as they are loaded?

Can I automatically package-lock libraries as they are loaded by Quicklisp? I want every package locked. Can I do this?
Rekumaru
  • 421
  • 1
  • 4
  • 10
0
votes
1 answer

Install GSLL on SBCL with Quicklisp

I am trying to install the GNU Scientific Library for Lisp (GSLL). I saw there are answers to a similar question already, but I didn't find the connection to what is happening in my case. Could anyone help to move on from here? CL-USER>…
Danny Zuko
  • 483
  • 4
  • 12
0
votes
1 answer

Weblocks loaded with Quicklisp displays only Hunchentoot, not the Weblocks

I followed a Screencast quicklisp intro 1/2 and applied all the steps succesfully on my Mac mini PowerPC, using Clozure CL 1.6 for PowerPC Mac OS. Here are some sample screenchots showing how successful the build has been: (source: hizliresim.com)…
Terry
  • 1,206
  • 1
  • 10
  • 26
0
votes
1 answer

Quicklisp: Manually add library to dist?

Some days ago I updated SBCL to 1.2.1 and I thought it couldn't hurt to update the quick lisp dist/client as well. WRONG! After firing up slime in Emacs, I got this error: ; caught ERROR: ; READ error during COMPILE-FILE: ; ; Symbol…
rudolfo.christ
  • 1,432
  • 1
  • 11
  • 13
0
votes
1 answer

Emacs auto-complete for installed library via quicklisp?

I'm using Emacs 24.3 + SBCL + Slime + Quicklisp. Emacs auto-complete works well in slime. But, I usaully write lisp code in .lisp file where I can't load cl library because .lisp file is not REPL as you know. How can I do auto-complete without…
1ambda
  • 1,145
  • 8
  • 19
0
votes
1 answer

Using packages installed from quicklisp with clisp

I installed cl-yacc from quick lisp: (ql:quickload "yacc") I checked it is available. [12]> (ql:system-apropos "yacc") # #
prosseek
  • 182,215
  • 215
  • 566
  • 871
0
votes
1 answer

error in loading quicklisp.lisp

i run sbcl as follows: * (load "quicklisp.lisp") debugger invoked on a UNBOUND-VARIABLE in thread #: …
fisherman
  • 10,739
  • 5
  • 20
  • 16
0
votes
3 answers

Quickload inside eval-when

Here's a strange situation. I have this code: (eval-when (:compile-toplevel :load-toplevel :execute) (ql:quickload "cffi-grovel") (setf cffi-grovel::*cc* "mpicc")) ; <--- this is the line it complains about. Which I belive has to load…
user797257
0
votes
1 answer

storing the package names returned by ql:system-apropos into a variable

I'm attempting to save the output of (ql:system-apropos "regex") to a variable by using multiple-value-bind, but I only the nil. However, it seems that this command only prints text to REPL and does not return any variables, so doesn't seem to work.…
nrz
  • 10,435
  • 4
  • 39
  • 71
-3
votes
1 answer

Common Lisp Package and Module Management

I am currently trying to understand how Common Lisp manages its packages and modules. Consider this code: (in-package :cl-user) (ql:quickload :cl-who) (ql:quickload :hunchentoot) (ql:quickload :parenscript) (defpackage :retro-games (:use :cl…
MadPhysicist
  • 5,401
  • 11
  • 42
  • 107
1 2 3
10
11