buildapp
buildapp copied to clipboard
Buildapp makes it easy to build application executables with SBCL
Fix call to NATIVE-NAMESTRING on return of ASDF:SYSTEM-RELATIVE-PATHNAME, which may return a logical pathname.
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...
To facilitate the use of a non-standard core file, and also to allow buildapp be easily used with non-global sbcl installations (without having to resort to environmental variables.)
It is documented at https://ccl.clozure.com/manual/chapter16.1.html and is comparable to `--dynamic-space-size` in SBCL I think. Following up on problems to build pgloader with CCL on dockerhub and travis environments I got...
Take the version from the system file and display it when given a --version option.
As far as I can tell, sbcl supports 1-9 as a compression level if built with :SB-CORE-COMPRESSION feature, but buildapp does not allow for setting the compression level. Could the...
osx 10.10 ccl64 build from trunk, make line was make DESTDIR="path/to/buildapp" LISP="path/to/dx86cl64" install note hardcoded use of sbcl at frame 14. (20E7C6A0) : 0 (>-2 NIL 0) 2293 (20E7C6D0) :...
(buildapp:build-buildapp) fails with Error # [Condition of type BUILDAPP::SILENT-EXIT-ERROR] Restarts: 0: [RETRY] Retry SLIME REPL evaluation request. 1: [*ABORT] Return to SLIME's top level. 2: [ABORT-BREAK] Reset this thread 3:...
On CCL1.10 on Windows XP 32b, `(buildapp:build-buildapp)` fails. run-program is called as follows: `(run-program "ccl" '(...))` If run-program is called like below, it works. `(run-program "cmd" '("/c" "ccl" ...))`