[Vm-dev] VM Maker: CMakeVMMaker-EstebanLorenzano.195.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Mar 13 15:41:59 UTC 2013


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

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

Name: CMakeVMMaker-EstebanLorenzano.195
Author: EstebanLorenzano
Time: 13 March 2013, 4:41:44.443 pm
UUID: 15a6a73e-7901-4add-9b64-bf383d934e55
Ancestors: CMakeVMMaker-EstebanLorenzano.194

- fixed flags for mac

=============== Diff against CMakeVMMaker-EstebanLorenzano.194 ===============

Item was changed:
  ----- Method: CogFamilyCocoaIOSConfig>>commonCompilerFlags (in category 'settings') -----
  commonCompilerFlags
  	^super commonCompilerFlags, 
+ 		#(
+ 	'-funroll-loops' 
+ 	'-fasm-blocks' 
+ 	'-fno-inline-functions' 
+ 	'-mfpmath=sse' 
+ 	'-march=pentium-m' 
+ 	'-mtune=prescott' 
+ 	'-falign-functions=16' 
+ 	'-fno-gcse' 
+ 	'-fno-cse-follow-jumps' 
+ 	'-std=gnu99'
+ 	'-fmessage-length=0' 
+ 	'-fpascal-strings' 
+ 	'-DBUILD_FOR_OSX' 
- 		{
- 	'-funroll-loops'.
- 	'-fasm-blocks'. 
- 	'-finline-functions'. 
- 	'-mfpmath=sse'. 
- 	'-march=pentium-m'. 
- 	'-mtune=prescott'. 
- 	'-falign-functions=16'. 
- 	'-fno-gcse'. 
- 	'-fno-cse-follow-jumps'. 
- 	'-std=gnu99'. 
- 	'-DBUILD_FOR_OSX'. 
  	"'-DUSE_INLINE_MEMORY_ACCESSORS=1' "
+ 	'-DLSB_FIRST' 
+ 	'-DHAVE_SYS_TIME_H' 
+ 	'-DHAVE_NANOSLEEP' 
+ 	'-DCOGMTVM=0' 
+ 	'-DUSE_GLOBAL_STRUCT=0' 
+ 	'-DBASE_HEADER_SIZE=4')!
- 	'-DLSB_FIRST'. 
- 	'-DHAVE_SYS_TIME_H'. 
- 	'-DHAVE_NANOSLEEP'. 
- 	'-DCOGMTVM=0'. 
- 	'-DUSE_GLOBAL_STRUCT=0'. 
- 	'-DBASE_HEADER_SIZE=4'.
- 	 '-fwrapv' }!

Item was changed:
  ----- Method: CogFamilyCocoaIOSConfig>>compilerFlagsDebug (in category 'settings') -----
  compilerFlagsDebug
+ 	^#('-g3' '-O1' '-DDEBUGVM=1')!
- 	^#('-g3' '-O0' '-DDEBUGVM=1')!

Item was changed:
  ----- Method: CogFamilyCocoaIOSConfig>>compilerFlagsRelease (in category 'settings') -----
  compilerFlagsRelease 
  	^#('-g0' '-O3' '-fomit-frame-pointer' '-DNDEBUG' '-DDEBUGVM=0')!

Item was changed:
+ ----- Method: CogFamilyCocoaIOSConfig>>setGlobalOptionsAfterDetermineSystem: (in category 'settings') -----
- ----- Method: CogFamilyCocoaIOSConfig>>setGlobalOptionsAfterDetermineSystem: (in category 'as yet unclassified') -----
  setGlobalOptionsAfterDetermineSystem:  maker
- 
  	maker set: 'CMAKE_OSX_DEPLOYMENT_TARGET' to: '10.5'.
  	maker 
  		set: 'CMAKE_OSX_SYSROOT' 
  		to: '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX', self sdkVersion, '.sdk'!



More information about the Vm-dev mailing list