VM Maker: VMMaker-dtl.324.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

VM Maker: VMMaker-dtl.324.mcz

commits-2
 
David T. Lewis uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker-dtl.324.mcz

==================== Summary ====================

Name: VMMaker-dtl.324
Author: dtl
Time: 29 August 2013, 11:35:31.522 pm
UUID: 07cc6263-b990-444c-91a9-f0cc4dec9a1b
Ancestors: VMMaker-eem.323

VMMaker 4.12.6

RePlugin fixes from VMMaker-eem.323. Declare rePluginMalloc: and rePluginFree: as required method names otherwise they are excluded from code generation. Previously they were declared extern for this reason (oscog code generator does not have the update to trim unreferenced methods in plugins, so not an issue for Cog).

=============== Diff against VMMaker-eem.323 ===============

Item was added:
+ ----- Method: RePlugin class>>requiredMethodNames (in category 'translation') -----
+ requiredMethodNames
+ "return the list of method names that should be retained for export or other support reasons"
+
+ ^{ #rePluginMalloc: . #rePluginFree: }!

Item was changed:
  ----- Method: VMMaker class>>versionString (in category 'version testing') -----
  versionString
 
  "VMMaker versionString"
 
+ ^'4.12.6'!
- ^'4.12.5'!