Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gary Palter
asdf
Commits
0467a73a
Commit
0467a73a
authored
1 year ago
by
Robert Goldman
Browse files
Options
Downloads
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
uiop/image.lisp
+8
-2
8 additions, 2 deletions
uiop/image.lisp
with
8 additions
and
2 deletions
uiop/image.lisp
+
8
−
2
View file @
0467a73a
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment