simple executable, only hello world

This commit is contained in:
2026-07-02 00:20:25 +03:00
parent 6f386fa9a6
commit 7609fcc6c8
5 changed files with 35 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
(require :asdf)
#+sb-core-compression
(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
(uiop:dump-image (asdf:output-file o c)
:executable t
:compression t))
(asdf:load-asd "lspack.asd")
(asdf:load-system "lspack/exe")
(asdf:make "lspack/exe")
(quit)