Skip to content

Commit

Permalink
Add instructions for Squeak trunk image prep
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Apr 20, 2021
1 parent 428491c commit d62927d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions squeak/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Preparation of Squeak Trunk images

*For 64/32-bit trunk images with update level 20447 or higher.*

```smalltalk
"Ensure Metacello is loaded."
Metacello new.
"Ensure Tonel is loaded."
[ (Smalltalk classNamed: #MCTonelMissing) signal ] valueSupplyingAnswer: true.
"Clean up and save the image."
ReleaseBuilder deleteAllWindows.
Smalltalk garbageCollect.
Smalltalk condenseChanges.
Smalltalk snapshot: true andQuit: true.
```

0 comments on commit d62927d

Please sign in to comment.