Skip to content

Commit 54e4495

Browse files
committed
fix: add easy save-lisp-and-die method
1 parent ca6b21f commit 54e4495

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
c-src/*.o
22
c-src/*.so
3+
/main

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ BORINGSSL_COMMIT=251b5169fd44345f455438312ec4e18ae07fd58c
44

55
all: ffi
66

7+
image:
8+
sbcl --load save-executable.lisp
9+
710
clone:
811
git clone --recursive https://github.com/AeroNotix/lsquic.git
912
git clone https://boringssl.googlesource.com/boringssl

save-executable.lisp

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(progn
2+
(ql:quickload :http3)
3+
(sb-ext:save-lisp-and-die
4+
"main"
5+
:executable t
6+
:purify t
7+
:compression 9))

0 commit comments

Comments
 (0)