advent-of-code-2024

My solutions to AoC 2024
Log | Files | Refs

commit b68ab874ab6ed68a7b9d5b4914feeeed7603850f
parent f9d22a005fa26a4a7476b1428d9bf58593b86947
Author: Lukas Henkel <lh@entf.net>
Date:   Sun,  1 Dec 2024 12:36:12 +0100

Increase heap size for executable

Diffstat:
Mbuild.lisp | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/build.lisp b/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)