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

commits at source.squeak.org commits at source.squeak.org
Sat Sep 22 16:56:57 UTC 2012


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

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

Name: VMMaker-dtl.288
Author: dtl
Time: 22 September 2012, 12:55:24.391 pm
UUID: c7214048-4a00-4f16-bc83-1b8e2933dd47
Ancestors: VMMaker-dtl.287

VMMaker 4.10.3

Fix code generator initialization for B3DEnginePlugin (Squeak3D). Fixes a bug introduced in VMMaker-dtl.259 of 24 November 2011 and present in VMMaker versions 4.7.16 through 4.10.3 in which the exports table in the generated Squeak3D.c has nil module name.

=============== Diff against VMMaker-dtl.287 ===============

Item was added:
+ ----- Method: InterpreterPlugin class>>buildCodeGeneratorUpTo: (in category 'translation') -----
+ buildCodeGeneratorUpTo: aClass
+ 	"Build a CCodeGenerator for this class."
+ 	 | cg |
+ 	cg := super buildCodeGeneratorUpTo: aClass.
+ 	cg pluginName: self moduleName.
+ 	^cg
+ !

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



More information about the Vm-dev mailing list