[Vm-dev] [commit][2963] Add top-level convenience makeall scripts and set executable properties.

commits at squeakvm.org commits at squeakvm.org
Mon Jun 9 23:32:15 UTC 2014


Revision: 2963
Author:   eliot
Date:     2014-06-09 16:32:15 -0700 (Mon, 09 Jun 2014)
Log Message:
-----------
Add top-level convenience makeall scripts and set executable properties.

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

Added Paths:
-----------
    branches/Cog/build.linux32x86/makeall
    branches/Cog/build.macos32x86/makeall
    branches/Cog/build.win32x86/makeall

Added: branches/Cog/build.linux32x86/makeall
===================================================================
--- branches/Cog/build.linux32x86/makeall	                        (rev 0)
+++ branches/Cog/build.linux32x86/makeall	2014-06-09 23:32:15 UTC (rev 2963)
@@ -0,0 +1,4 @@
+#!/bin/bash
+for d in newspeak.* squeak.*; do
+	(cd $d;./makeallclean)
+done


Property changes on: branches/Cog/build.linux32x86/makeall
___________________________________________________________________
Added: svn:executable
   + *

Added: branches/Cog/build.macos32x86/makeall
===================================================================
--- branches/Cog/build.macos32x86/makeall	                        (rev 0)
+++ branches/Cog/build.macos32x86/makeall	2014-06-09 23:32:15 UTC (rev 2963)
@@ -0,0 +1,4 @@
+#!/bin/bash
+for d in newspeak.* squeak.*; do
+	(cd $d;./mvm -A)
+done


Property changes on: branches/Cog/build.macos32x86/makeall
___________________________________________________________________
Added: svn:executable
   + *

Modified: branches/Cog/build.macos32x86/squeak.cog.spur/mvm
===================================================================
--- branches/Cog/build.macos32x86/squeak.cog.spur/mvm	2014-06-09 23:21:14 UTC (rev 2962)
+++ branches/Cog/build.macos32x86/squeak.cog.spur/mvm	2014-06-09 23:32:15 UTC (rev 2963)
@@ -10,8 +10,9 @@
 while [ -n "$1" ]; do
 	case $1 in
 	-c)	C=-c;; #-c == Core VM only
-	-A)	D=LOGD;A=LOGA;F=LOGS;DT=LOGTD;AT=LOGTA;FT=LOGTS;;
-	-AS)	D=LOGD;A=LOGA;F=LOGS;;
+#	-A)	D=LOGD;A=LOGA;F=LOGS;DT=LOGTD;AT=LOGTA;FT=LOGTS;;
+#	-AS)	D=LOGD;A=LOGA;F=LOGS;;
+	-A|-AS)	D=LOGD;A=LOGA;F=LOGS;;
 	-AT)	DT=LOGTD;AT=LOGTA;FT=LOGTS;;
 	-d)	D=LOGD;;
 	-dt)	DT=LOGTD;;

Added: branches/Cog/build.win32x86/makeall
===================================================================
--- branches/Cog/build.win32x86/makeall	                        (rev 0)
+++ branches/Cog/build.win32x86/makeall	2014-06-09 23:32:15 UTC (rev 2963)
@@ -0,0 +1,4 @@
+#!/bin/bash
+for d in newspeak.* squeak.*; do
+	(cd $d;./mvm)
+done


Property changes on: branches/Cog/build.win32x86/makeall
___________________________________________________________________
Added: svn:executable
   + *



More information about the Vm-dev mailing list