[Vm-dev] VM Maker: VMMaker-dtl.324.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Aug 30 03:37:02 UTC 2013


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'!



More information about the Vm-dev mailing list