VM Maker: CMakeVMMaker-EstebanLorenzano.138.mcz

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

VM Maker: CMakeVMMaker-EstebanLorenzano.138.mcz

commits-2
 
Esteban Lorenzano uploaded a new version of CMakeVMMaker to project VM Maker:
http://source.squeak.org/VMMaker/CMakeVMMaker-EstebanLorenzano.138.mcz

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

Name: CMakeVMMaker-EstebanLorenzano.138
Author: EstebanLorenzano
Time: 12 September 2011, 9:53:03 am
UUID: 660ad8aa-9171-4f67-a322-a883f1f34885
Ancestors: CMakeVMMaker-EstebanLorenzano.137

-removed BYTES_PER_WORLD definition (not needed anymore)
-removed defaultToLF all around the cmake files. Supposely, this is not needed anymore.

=============== Diff against CMakeVMMaker-EstebanLorenzano.137 ===============

Item was changed:
  ----- Method: CogCocoaIOSConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
-
- "force using LF on Macs"
- CrLfFileStream defaultToLF.
-
  ^ self prepareForCogGeneration
  !

Item was removed:
- ----- Method: CogFamilyCocoaIOSConfig>>commonCompilerFlags (in category 'settings') -----
- commonCompilerFlags
- ^super commonCompilerFlags, (Array with: '-DBYTES_PER_WORD=4')!

Item was changed:
  ----- Method: CogMacOSConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
-
- "force using LF on Macs"
- CrLfFileStream defaultToLF.
-
  ^ self prepareForCogGeneration
  !

Item was changed:
  ----- Method: CogUnixConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
-
- "force using LF on Macs"
- CrLfFileStream defaultToLF.
-
  ^ self prepareForCogGeneration
  !

Item was changed:
  ----- Method: CogWindowsConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
-
- CrLfFileStream defaultToLF. "For strange reason it works like that"
-
  ^ self prepareForCogGeneration!

Item was changed:
  ----- Method: MacOSConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
+ !
-
- "force using LF on Macs"
- CrLfFileStream defaultToLF.
-
- !

Item was changed:
  ----- Method: StackCocoaIOSConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
-
- "force using LF on Macs"
- CrLfFileStream defaultToLF.
-
  ^ self prepareForStackVMGeneration
  !

Item was changed:
  ----- Method: StackFreeBSDConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
-
- "force using LF on Macs"
- CrLfFileStream defaultToLF.
-
  ^ self prepareForStackVMGeneration
  !

Item was changed:
  ----- Method: StackMacOSConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
-
- "force using LF on Macs"
- CrLfFileStream defaultToLF.
-
  ^ self prepareForStackVMGeneration
  !

Item was changed:
  ----- Method: StackUnixConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
-
- "force using LF on Macs"
- CrLfFileStream defaultToLF.
-
  ^ self prepareForStackVMGeneration
  !

Item was changed:
  ----- Method: StackWindowsConfig>>prepareForGeneration (in category 'source generation') -----
  prepareForGeneration
-
- CrLfFileStream defaultToLF. "For strange reason it works like that"
-
  ^ self prepareForStackVMGeneration!