Skip to content
Snippets Groups Projects
Commit 0467a73a authored by Robert Goldman's avatar Robert Goldman
Browse files

Merge branch 'iss141' into 'master'

Restore correct uiop/dump-image on older ACLs.

Closes #141

See merge request !225
parents 7218322a 40ae1402
No related branches found
No related tags found
No related merge requests found
......@@ -361,8 +361,14 @@ or COMPRESSION on SBCL, and APPLICATION-TYPE on SBCL/Windows."
(not-implemented-error 'dump-image "dumping an executable"))
#+allegro
(progn
(sys:resize-areas :old :no-change :old-code :no-change
:global-gc t :pack-heap t :sift-old-areas t :tenure t) ; :new 5000000
#+(and allegro-version>= (version>= 11))
(sys:resize-areas ;; these two are wrong, but what the heck is right?
:old :no-change :old-code :no-change
:global-gc t
;; :pack-heap t :sift-old-areas t
:tenure t)
#+(and allegro-version>= (not (version>= 11)))
(sys:resize-areas :global-gc t :pack-heap t :sift-old-areas t :tenure t)
(excl:dumplisp :name filename :suppress-allegro-cl-banner t))
#+clisp
(apply #'ext:saveinitmem filename
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment