You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to run the libcalc example and have run into a number of
issues.
UIOP/QL is not loading in examples/libcalc/script.lisp
Fixed this by requiring UIOP and loading Quicklisp at the top of the
script, this might just be an issue with my personal setup, scripts
don't load ~/.sbclrc
*incbin-filename* is unbound
I don't understand why, but unless I get rid of the eval-when
wrapping this parameter in src/fasl-lib.lisp, it remains unbound.
The Makefile in libcalc example tries to build a dylib on Linux
This obviously doesn't work, so I commented out that part of the
Makefile:
This is what I'm stuck on now, there is no header named sbcl_librarian.h in the repo, and I'm not sure if I need to generate
it somehow.
Right now, after solving this issues, I am here:
garlic@pi:~/common-lisp/sbcl-librarian/examples/libcalc $ make example
cc example.c -o example -I/home/garlic/common-lisp/sbcl-librarian/lib -lsbcl -lcalc -L.
example.c:2:10: fatal error: sbcl_librarian.h: No such file or directory
2 | #include <sbcl_librarian.h>
| ^~~~~~~~~~~~~~~~~~
compilation terminated.
make: *** [Makefile:9: example] Error 1
Any help is appreciated, thank you.
The text was updated successfully, but these errors were encountered:
I am trying to run the libcalc example and have run into a number of
issues.
examples/libcalc/script.lisp
Fixed this by requiring UIOP and loading Quicklisp at the top of the
script, this might just be an issue with my personal setup, scripts
don't load
~/.sbclrc
*incbin-filename*
is unboundI don't understand why, but unless I get rid of the
eval-when
wrapping this parameter in
src/fasl-lib.lisp
, it remains unbound.This obviously doesn't work, so I commented out that part of the
Makefile:
sbcl_librarian_err.h
I fixed it by adding an include path in the CC command, now that Make
target looks like this:
sbcl_librarian.h
This is what I'm stuck on now, there is no header named
sbcl_librarian.h
in the repo, and I'm not sure if I need to generateit somehow.
Right now, after solving this issues, I am here:
Any help is appreciated, thank you.
The text was updated successfully, but these errors were encountered: