VM Maker: CMakeVMMakerSqueak-tty.25.mcz

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

VM Maker: CMakeVMMakerSqueak-tty.25.mcz

commits-2
 
Timothy M uploaded a new version of CMakeVMMakerSqueak to project VM Maker:
http://source.squeak.org/VMMaker/CMakeVMMakerSqueak-tty.25.mcz

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

Name: CMakeVMMakerSqueak-tty.25
Author: tty
Time: 2 June 2014, 5:25:02.69 pm
UUID: 74ff08ad-168a-42e7-b656-60f38d96cb0c
Ancestors: CMakeVMMakerSqueak-tty.24

fix class comment to invoke the correct class when generatingSource

=============== Diff against CMakeVMMakerSqueak-tty.24 ===============

Item was changed:
  CogFamilyUnixConfig subclass: #SqueakCogUnixConfig
  instanceVariableNames: ''
  classVariableNames: ''
  poolDictionaries: ''
  category: 'CMakeVMMakerSqueak-Unix'!
 
+ !SqueakCogUnixConfig commentStamp: 'tty 6/2/2014 17:20' prior: 0!
- !SqueakCogUnixConfig commentStamp: '<historical>' prior: 0!
  Base and concrete configuration for building a CogVM on Unix platform(s).
 
  Usage:
+ SqueakCogUnixConfig generateWithSources
- CogUnixConfig generateWithSources
  or
+ SqueakCogUnixConfig generate   "if VMMaker sources already there"
- CogUnixConfig generate   "if VMMaker sources already there"
 
 
  Fore more information, check the class comments of all the superclasses.
  !