commit b68ab874ab6ed68a7b9d5b4914feeeed7603850f from: Lukas Henkel date: Sun Dec 01 11:36:12 2024 UTC Increase heap size for executable commit - f9d22a005fa26a4a7476b1428d9bf58593b86947 commit + b68ab874ab6ed68a7b9d5b4914feeeed7603850f blob - 60c03a592deb689774906dce80c7aa6b2e50bd92 blob + 20ab4173df28c4522717e9f7519bc211ab8469fe --- build.lisp +++ build.lisp @@ -1,6 +1,6 @@ #!/bin/sh #| -exec sbcl --script "build.lisp" +exec sbcl --dynamic-space-size 4096 --script "build.lisp" |# (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname)))) @@ -19,4 +19,5 @@ exec sbcl --script "build.lisp" do (ql:quickload system-name)) (sb-ext:save-lisp-and-die "aoc" :toplevel #'aoc:main - :executable t) + :executable t + :save-runtime-options t)