This is a read-only archive of lispforum.com. The forum was locked to new users and posts and is preserved here as static HTML from a database snapshot taken on 2019-09-07.

Problems with allegro express and slime

8 posts · 4346 views

Hi I have an issue when trying to set up slime for allegro express on ubuntu. When it loads it says that it cannot find package clc and instead of going to the slime listener it actually opens up allegro's ide. Does anyone know what a fix for this is? Thanks in advance.

Re: Problems with allegro express and slime

If I had to guess I'd say that the setup Ubuntu includes tries to load the CL parts of Slime using common-lisp-controller, but Allegro doesn't know where to find the files for it. I don't use Ubuntu, CLC, or ACL, so you might want to wait for someone who does.

Re: Problems with allegro express and slime

I suggest asking Franz's support people. As long as you're paying for Allegro, you might as well take advantage of the fact that there's a company behind the product.

Re: Problems with allegro express and slime

janders468 wrote:Hi I have an issue when trying to set up slime for allegro express on ubuntu. When it loads it says that it cannot find package clc and instead of going to the slime listener it actually opens up allegro's ide. Does anyone know what a fix for this is? Thanks in advance.
clc is evil. I would uninstall SLIME/Swank, checkout SLIME from CVS, and do the needed symlinking and configuration file editing needed to use the SLIME you checked out and so that ASDF can load swank. That should give you a setup that doesn't depend on clc and should work.

Re: Problems with allegro express and slime

Thanks, Out of curiosity what is clc (evil or otherwise)?

Re: Problems with allegro express and slime

janders468 wrote:Thanks, Out of curiosity what is clc (evil or otherwise)?
It's common-lisp-controller, a tool for installing packages on Debian and Gentoo systems. The idea is to make things easier, but I guess it's not as easy as all that.

Re: Problems with allegro express and slime

Paul Donnelly wrote:
janders468 wrote:Thanks, Out of curiosity what is clc (evil or otherwise)?
It's common-lisp-controller, a tool for installing packages on Debian and Gentoo systems. The idea is to make things easier, but I guess it's not as easy as all that.
Gentoo has not been using clc for a long time. It's using only asdf now.

Re: Problems with allegro express and slime

dmitry_vk wrote:
Paul Donnelly wrote:
janders468 wrote:Thanks, Out of curiosity what is clc (evil or otherwise)?
It's common-lisp-controller, a tool for installing packages on Debian and Gentoo systems. The idea is to make things easier, but I guess it's not as easy as all that.
Gentoo has not been using clc for a long time. It's using only asdf now.
I assumed that mean that it worked on Debian- and Gentoo-based systems, not that they were currently using it.