Dec. 17, 2015
12:20 p.m.
On 17-12-15 12:53, Guillermo Polito wrote:
Hmm, usually an image file has a header that describes some meta data about the image: version, some VM options, size of the imageâ¦
byteStream := FileStream fileNamed: '/home/stephan/.local/share/Pharo/images/50305/50305.image'. byteStream binary. version := byteStream nextLittleEndianNumber: 4. byteStream close. version 6505 That supports deciding which vm to use Stephan