xach / buildapp

Buildapp makes it easy to build application executables with SBCL
http://www.xach.com/lisp/buildapp/
123 stars 27 forks source link

Default SBCL build fails with SBCL 1.3.15 #29

Closed eschulte closed 7 years ago

eschulte commented 7 years ago

See the following debug output, it almost looks like the working directory isn't being set in sbcl.

$ sbcl --version
SBCL 1.3.15

$ make clean
rm -f buildapp *~ *.fasl *.lx32fsl

$make
sbcl --noinform --no-userinit --no-sysinit --disable-debugger \
  --eval "(require 'asdf)" \
  --eval "(push \"$(pwd)/\" asdf:*central-registry*)" \
  --eval "(require 'buildapp)" \
          --eval "(buildapp::build-buildapp)" \
          --eval "#+sbcl (exit) #+ccl (quit)"
fatal error encountered in SBCL pid 51157(tid 0x7ffff7fd5fc0):
can't find core file at NIL/sbcl.core

make: *** [Makefile:11: buildapp] Error 1
eschulte commented 7 years ago

Sorry, a local problem