Skip to content

Commit

Permalink
Now DYNAMIC_SPACE_SIZE env variable can be used to control amount of …
Browse files Browse the repository at this point in the history
…memory available to SBCL, by default it is 1Gb.
  • Loading branch information
svetlyak40wt committed Dec 14, 2024
1 parent 2912caf commit 41fd508
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/changelog.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
(defchangelog (:ignore-words ("SLY"
"ASDF"
"REPL"
"SBCL"
"DYNAMIC_SPACE_SIZE"
"HTTP"))
(0.4.0 2024-12-14
"* Now DYNAMIC_SPACE_SIZE env variable can be used to control amount of memory available to SBCL, by default it is 1Gb.")
(0.3.0 2023-12-01
"* Fixed issue when package was mentioned as unused whereas it was used inside a backquoted part of the macro.")
(0.2.0 2023-11-19
Expand Down
3 changes: 2 additions & 1 deletion roswell/40ants-linter.ros
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/bin/sh
#|-*- mode:lisp -*-|#
#|
exec ros -Q -- $0 "$@"
DYNAMIC_SPACE_SIZE=${DYNAMIC_SPACE_SIZE:-1Gb}
exec ros dynamic-space-size=$DYNAMIC_SPACE_SIZE -Q -- $0 "$@"
|#
(progn ;;init forms
(ros:ensure-asdf)
Expand Down

0 comments on commit 41fd508

Please sign in to comment.