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 df50bd8 commit 20aaf80
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
8 changes: 4 additions & 4 deletions qlfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
("quicklisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "http://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
:version "2023-10-21"))
:initargs (:distribution "https://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
:version "2024-10-12"))
("ultralisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "http://dist.ultralisp.org" :%version :latest)
:version "20240311030500"))
:initargs (:distribution "https://dist.ultralisp.org" :%version :latest)
:version "20241214033500"))
("sly" .
(:class qlot/source/github:source-github
:initargs (:repos "svetlyak40wt/sly" :ref nil :branch "patches" :tag nil)
Expand Down
3 changes: 2 additions & 1 deletion roswell/build-docs.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
5 changes: 5 additions & 0 deletions src/changelog.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@
(defchangelog (:ignore-words ("HTML"
"MGL-PAX"
"ASDF"
"DYNAMIC_SPACE_SIZE"
"1Gb"
"SBCL"
"ERROR-ON-WARNINGS"
"DYNAMIC-BINDINGS")
:external-docs ("https://40ants.com/doc/"))
(0.12.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.11.1 2024-03-11
"* Fixed initite loop when the system is unknown to ASDF yet.")
(0.11.0 2023-06-05
Expand Down

0 comments on commit 20aaf80

Please sign in to comment.