[View] [Edit] [Lock] [References] [Attachments] [History] [Home] [Changes] [Search] [Help]
[console] How to build a new application Image?
The standard way to build a new application Image is the execution of the S8 VM, passing a build.js file as an argument. That file has all the instructions needed to build the new image.
Typical instructions in build.js files
smalltalk.launchImage("../s8/s8.image.js");
- load some Smalltalk files (See this question)
- save the new built image or Snapshot
" Snapshot outputToFile: Smalltalk current imageFileName ".doIt();