xach / buildapp

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

Building on Windows fails #34

Open notmgsk opened 5 years ago

notmgsk commented 5 years ago

Running make gives the following:

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)"
Unhandled SB-INT:EXTENSION-FAILURE in thread #<SB-THREAD:THREAD "main thread" RUNNING
                                                {10013D0613}>:
  Don't know how to REQUIRE BUILDAPP.

Explicitly loading the ASDF in Makefile fixes it: --eval "(progn (load \"buildapp.asd\") (asdf:load-system :buildapp))".