[Vm-dev] [commit][3466] Get the paths right for build.macos32x86/squeak.cog.spur/ makeiosvm so it creates a

commits at squeakvm.org commits at squeakvm.org
Thu Oct 1 02:00:53 UTC 2015


Revision: 3466
Author:   eliot
Date:     2015-09-30 19:00:52 -0700 (Wed, 30 Sep 2015)
Log Message:
-----------
Get the paths right for build.macos32x86/squeak.cog.spur/makeiosvm so it creates a
fully populated build.macos32x86/squeak.cog.spur/CocoaDebug.app when
build.macos32x86/squeak.cog.spur/miosvm -d is run.  Yay!!

Modified Paths:
--------------
    branches/Cog/build.macos32x86/squeak.cog.spur/makeiosvm

Modified: branches/Cog/build.macos32x86/squeak.cog.spur/makeiosvm
===================================================================
--- branches/Cog/build.macos32x86/squeak.cog.spur/makeiosvm	2015-10-01 01:37:44 UTC (rev 3465)
+++ branches/Cog/build.macos32x86/squeak.cog.spur/makeiosvm	2015-10-01 02:00:52 UTC (rev 3466)
@@ -1,15 +1,17 @@
 #!/bin/bash
 # Build a "complete" Mac VM consisting of CoreVM/CoreMTVM + Plugins.
-# By default build the Deployment configuration into $APP (Squeak.app)
+# By default build the Deployment configuration into $DEST$VMAPP (CocoaSqueak.app)
 IFS='	
 '
 BUILD_CONFIGURATION=Deployment
 NSD_BUILD_CONFIGURATION=Deployment
 XCD_BUILD_CONFIGURATION=Release
 APP=Squeak.app
-OBJDIR=Squeak.build/Objects-normal/i386
+# build/SqueakCogSpur32x86.build/Debug/SqueakCogSpur32x86.build/Objects-normal
+#OBJDIR=Squeak.build/Objects-normal/i386
+OBJDIR=SqueakCogSpur32x86.build/Objects-normal/i386
 VMAPP=".app"
-DEST="Squeak"
+DEST="CocoaSqueak"
 VMXCP=SqueakCogSpur32x86
 SFP=SqueakFFIPrims
 KEEP=
@@ -21,16 +23,16 @@
 	a)		BUILD_CONFIGURATION=Assert
 			NSD_BUILD_CONFIGURATION=Development
 			XCD_BUILD_CONFIGURATION=Debug
-			DEST=Assert;;
-	d)		BUILD_CONFIGURATION=Development
+			DEST=CocoaAssert;;
+	d)		BUILD_CONFIGURATION=Debug
 			NSD_BUILD_CONFIGURATION=Development
 			XCD_BUILD_CONFIGURATION=Debug
-			DEST=Debug;;
+			DEST=CocoaDebug;;
 	m)		VMAPP="MT.app";
 			VMXCP=SqueakCogSpur32x86MT;
 			SFP=SqueakMTFFIPrims;;
 	s)		BUILD_CONFIGURATION=DeploymentSymbols
-			DEST=Fast;;
+			DEST=CocoaFast;;
 	k)		KEEP=1;;
 	h|\?|*)	echo $USAGE
 			echo '	build the vm (defaults to a Deployment version)'
@@ -50,11 +52,6 @@
 fi
 test -d "$DEVELOPER_SDK_DIR" || echo '$DEVELOPER_SDK_DIR' "$DEVELOPER_SDK_DIR" does not exist \(needed by $SFP project\)
 export DEVELOPER_SDK_DIR
-#if [ ! -d "$DEVELOPER_SDK_DIR/MacOSX10.5.sdk" ]; then
-#	if [ -d "$DEVELOPER_SDK_DIR/MacOSX10.4u.sdk" ]; then
-#		export SDKROOT="$DEVELOPER_SDK_DIR/MacOSX10.4u.sdk"
-#	fi
-#fi
 
 test "$KEEP" = 1 || rm -rf "$DEST"/* "$DEST"/.??*
 



More information about the Vm-dev mailing list