You are not logged in.
Pages: 1
I'm stuck on this one, I installed cmucl,
[root@arch64 bin]# pacman -Ss cmucl
extra/cmucl 19d-1
CMU Common Lisp
[root@arch64 bin]# pacman -Q cmucl
cmucl 19d-1
[root@arch64 bin]#
but when I run it I get this error
[bob@arch64 ~]$ cmucl
/usr/bin/cmucl: line 16: /usr/lib/cmucl/bin/lisp: No such file or directory
/usr/bin/cmucl: line 16: exec: /usr/lib/cmucl/bin/lisp: cannot execute: No such file or directory
[bob@arch64 ~]$
I looked, there's no "lisp" file in /usr/lib/cmucl/bin. In fact, I can't find it anywhere.
Could someone shed some light on this? Many thanks.
Offline
Yes, the package is a bit broken. You should probably file a bug report.
A dirty fix is that you edit the file /usr/bin/cmucl (it's a shell script), and replace the path in the last line (which is originally /usr/lib/cmucl/bin/lisp) by just /usr/bin/lisp.
Offline
Pages: 1