[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.lisp

quicklisp problem with sbcl and iolib on arch linux

Stephan Lahl

4/19/2016 6:59:00 PM

I'm trying to install me something to play lisp and got stuck at this
point:

* (ql:quickload "hemlock.base")
To load "hemlock.base":
Load 1 ASDF system:
hemlock.base
; Loading "hemlock.base"
...............; g++ -m64 -Wno-write-strings -I/home/sl/quicklisp/dists/
quicklisp/software/iolib-v0.8.1/src/grovel/ -o /home/sl/.cache/common-
lisp/sbcl-1.3.1-linux-x64/home/sl/quicklisp/dists/quicklisp/software/
iolib-v0.8.1/src/syscalls/ffi-types-unix /home/sl/.cache/common-lisp/
sbcl-1.3.1-linux-x64/home/sl/quicklisp/dists/quicklisp/software/iolib-
v0.8.1/src/syscalls/ffi-types-unix.c

debugger invoked on a UIOP/RUN-PROGRAM:SUBPROCESS-ERROR in thread #<THREAD
"main thread" RUNNING {1002AAC443}>: Subprocess (:PROCESS #<SB-
IMPL::PROCESS :EXITED 1> :OUTPUT-STREAM #<SB-SYS:FD-STREAM for "descriptor
7" {10056B8653}>)
with command ("g++" "-m64" "-Wno-write-strings" "-I/home/sl/quicklisp/
dists/quicklisp/software/iolib-v0.8.1/src/grovel/" "-o" "/home/sl/.cache/
common-lisp/sbcl-1.3.1-linux-x64/home/sl/quicklisp/dists/quicklisp/
software/iolib-v0.8.1/src/syscalls/ffi-types-unix" "/home/sl/.cache/
common-lisp/sbcl-1.3.1-linux-x64/home/sl/quicklisp/dists/quicklisp/
software/iolib-v0.8.1/src/syscalls/ffi-types-unix.c")
exited with error code 1

Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.

restarts (invokable by number or by possibly-abbreviated name):
0: [CONTINUE ] IGNORE-ERROR-STATUS
1: [RETRY ] Retry PROCESS-OP on #<GROVEL-FILE
"iolib/syscalls" "ffi-types">.
2: [ACCEPT ] Continue, treating PROCESS-OP on
#<GROVEL-FILE "iolib/syscalls" "ffi-types"> as having been successful.
3: Retry ASDF operation.
4: [CLEAR-CONFIGURATION-AND-RETRY] Retry ASDF operation after resetting
the configuration.
5: [ABORT ] Give up on
"hemlock.base"
6: Exit debugger, returning to top
level.

(UIOP/RUN-PROGRAM::%CHECK-RESULT 1 :COMMAND ("g++" "-m64" "-Wno-write-
strings" "-I/home/sl/quicklisp/dists/quicklisp/software/iolib-v0.8.1/src/
grovel/" "-o" "/home/sl/.cache/common-lisp/sbcl-1.3.1-linux-x64/home/sl/
quicklisp/dists/quicklisp/software/iolib-v0.8.1/src/syscalls/ffi-types-
unix" "/home/sl/.cache/common-lisp/sbcl-1.3.1-linux-x64/home/sl/quicklisp/
dists/quicklisp/software/iolib-v0.8.1/src/syscalls/ffi-types-
unix.c") :PROCESS (:PROCESS #<SB-IMPL::PROCESS :EXITED 1> :OUTPUT-STREAM
#<SB-SYS:FD-STREAM for "descriptor 7" {10056B8653}>) :IGNORE-ERROR-STATUS
NIL)
0]

Any ideas how to fix this?
Thank you
Stephan
1 Answer

Stephan Lahl

4/20/2016 7:45:00 AM

0

Am Tue, 19 Apr 2016 18:59:08 +0000 schrieb Stephan Lahl:

> I'm trying to install me something to play lisp and got stuck at this
> point:
[...]
> Any ideas how to fix this?

Got it. iolib requires a library libfixposix which wasn't installed.
'yaourt libfixposix' solved the issue.

> Thank you Stephan

You're welcome, Minime.