We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca6b21f commit 54e4495Copy full SHA for 54e4495
.gitignore
@@ -1,2 +1,3 @@
1
c-src/*.o
2
c-src/*.so
3
+/main
Makefile
@@ -4,6 +4,9 @@ BORINGSSL_COMMIT=251b5169fd44345f455438312ec4e18ae07fd58c
4
5
all: ffi
6
7
+image:
8
+ sbcl --load save-executable.lisp
9
+
10
clone:
11
git clone --recursive https://github.com/AeroNotix/lsquic.git
12
git clone https://boringssl.googlesource.com/boringssl
save-executable.lisp
@@ -0,0 +1,7 @@
+(progn
+ (ql:quickload :http3)
+ (sb-ext:save-lisp-and-die
+ "main"
+ :executable t
+ :purify t
+ :compression 9))
0 commit comments