[Vm-dev] [commit][2731] Add linux multiple thread priority builds to newspeak.

commits at squeakvm.org commits at squeakvm.org
Thu Jun 6 21:50:40 UTC 2013


Revision: 2731
Author:   eliot
Date:     2013-06-06 14:50:39 -0700 (Thu, 06 Jun 2013)
Log Message:
-----------
Add linux multiple thread priority builds to newspeak.  Neaten the squeak linux
mvm files.

Modified Paths:
--------------
    branches/Cog/nscogbuild/unixbuild/astbld/plugins.int
    branches/Cog/nscogbuild/unixbuild/bld/plugins.int
    branches/Cog/nscogbuild/unixbuild/dbgbld/plugins.int
    branches/Cog/unixbuild/abld/mvm
    branches/Cog/unixbuild/abldt/mvm
    branches/Cog/unixbuild/bld/mvm
    branches/Cog/unixbuild/bldt/mvm
    branches/Cog/unixbuild/dbld/mvm
    branches/Cog/unixbuild/dbldt/mvm
    branches/Cog/unixbuild/mtbld/mvm

Property Changed:
----------------
    branches/Cog/platforms/Cross/vm/sqSCCSVersion.h

Modified: branches/Cog/nscogbuild/unixbuild/astbld/plugins.int
===================================================================
--- branches/Cog/nscogbuild/unixbuild/astbld/plugins.int	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/nscogbuild/unixbuild/astbld/plugins.int	2013-06-06 21:50:39 UTC (rev 2731)
@@ -22,4 +22,5 @@
 SocketPlugin \
 SurfacePlugin \
 UUIDPlugin \
-UnixOSProcessPlugin
+UnixOSProcessPlugin \
+VMProfileLinuxSupportPlugin

Modified: branches/Cog/nscogbuild/unixbuild/bld/plugins.int
===================================================================
--- branches/Cog/nscogbuild/unixbuild/bld/plugins.int	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/nscogbuild/unixbuild/bld/plugins.int	2013-06-06 21:50:39 UTC (rev 2731)
@@ -22,4 +22,5 @@
 SocketPlugin \
 SurfacePlugin \
 UUIDPlugin \
-UnixOSProcessPlugin
+UnixOSProcessPlugin \
+VMProfileLinuxSupportPlugin

Modified: branches/Cog/nscogbuild/unixbuild/dbgbld/plugins.int
===================================================================
--- branches/Cog/nscogbuild/unixbuild/dbgbld/plugins.int	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/nscogbuild/unixbuild/dbgbld/plugins.int	2013-06-06 21:50:39 UTC (rev 2731)
@@ -22,4 +22,5 @@
 SocketPlugin \
 SurfacePlugin \
 UUIDPlugin \
-UnixOSProcessPlugin
+UnixOSProcessPlugin \
+VMProfileLinuxSupportPlugin


Property changes on: branches/Cog/platforms/Cross/vm/sqSCCSVersion.h
___________________________________________________________________
Modified: checkindate
   - Thu Jun  6 14:31:30 PDT 2013
   + Thu Jun  6 14:50:01 PDT 2013

Modified: branches/Cog/unixbuild/abld/mvm
===================================================================
--- branches/Cog/unixbuild/abld/mvm	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/unixbuild/abld/mvm	2013-06-06 21:50:39 UTC (rev 2731)
@@ -1,4 +1,5 @@
 #!/bin/sh
+INSTALLDIR=cogastlinux
 echo -n "clean? "
 read a
 case $a in
@@ -11,5 +12,5 @@
 	LIBS=-lpthread \
 	LDFLAGS=-Wl,-z,now
 ../../scripts/nukeversion
-rm -rf ../../cogastlinux
-make install prefix=`(cd ../../;pwd)`/cogastlinux
+rm -rf ../../$INSTALLDIR
+make install prefix=`(cd ../../;pwd)`/$INSTALLDIR

Modified: branches/Cog/unixbuild/abldt/mvm
===================================================================
--- branches/Cog/unixbuild/abldt/mvm	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/unixbuild/abldt/mvm	2013-06-06 21:50:39 UTC (rev 2731)
@@ -1,5 +1,6 @@
 #!/bin/sh
 # VM with VM profiler and threaded heartbeat assuming multiple thread priorities
+INSTALLDIR=cogastlinuxpt
 echo -n "clean? "
 read a
 case $a in
@@ -12,5 +13,5 @@
 	LIBS=-lpthread \
 	LDFLAGS=-Wl,-z,now
 ../../scripts/nukeversion
-rm -rf ../../cogastlinuxpt
-make install prefix=`(cd ../../;pwd)`/cogastlinuxpt
+rm -rf ../../$INSTALLDIR
+make install prefix=`(cd ../../;pwd)`/$INSTALLDIR

Modified: branches/Cog/unixbuild/bld/mvm
===================================================================
--- branches/Cog/unixbuild/bld/mvm	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/unixbuild/bld/mvm	2013-06-06 21:50:39 UTC (rev 2731)
@@ -1,4 +1,5 @@
 #!/bin/sh
+INSTALLDIR=coglinux
 # Some gcc versions create a broken VM using -O2
 case `gcc -v 2>&1 | grep version | sed 's/gcc version *//'` in
 3.4.*)	OPT=-O1;;
@@ -17,5 +18,5 @@
 	LIBS=-lpthread \
 	LDFLAGS=-Wl,-z,now
 ../../scripts/nukeversion
-rm -rf ../../coglinux
-make install prefix=`(cd ../../;pwd)`/coglinux
+rm -rf ../../$INSTALLDIR
+make install prefix=`(cd ../../;pwd)`/$INSTALLDIR

Modified: branches/Cog/unixbuild/bldt/mvm
===================================================================
--- branches/Cog/unixbuild/bldt/mvm	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/unixbuild/bldt/mvm	2013-06-06 21:50:39 UTC (rev 2731)
@@ -1,5 +1,6 @@
 #!/bin/sh
 # VM with VM profiler and threaded heartbeat assuming multiple thread priorities
+INSTALLDIR=coglinuxpt
 # Some gcc versions create a broken VM using -O2
 case `gcc -v 2>&1 | grep version | sed 's/gcc version *//'` in
 3.4.*)	OPT=-O1;;
@@ -18,5 +19,5 @@
 	LIBS=-lpthread \
 	LDFLAGS=-Wl,-z,now
 ../../scripts/nukeversion
-rm -rf ../../coglinuxpt
-make install prefix=`(cd ../../;pwd)`/coglinuxpt
+rm -rf ../../$INSTALLDIR
+make install prefix=`(cd ../../;pwd)`/$INSTALLDIR

Modified: branches/Cog/unixbuild/dbld/mvm
===================================================================
--- branches/Cog/unixbuild/dbld/mvm	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/unixbuild/dbld/mvm	2013-06-06 21:50:39 UTC (rev 2731)
@@ -1,4 +1,5 @@
 #!/bin/sh
+INSTALLDIR=cogdbglinux
 echo -n "clean? "
 read a
 case $a in
@@ -11,5 +12,5 @@
 	LIBS=-lpthread \
 	LDFLAGS=-Wl,-z,now
 ../../scripts/nukeversion
-rm -rf ../../cogdbglinux
-make install prefix=`(cd ../../;pwd)`/cogdbglinux
+rm -rf ../../$INSTALLDIR
+make install prefix=`(cd ../../;pwd)`/$INSTALLDIR

Modified: branches/Cog/unixbuild/dbldt/mvm
===================================================================
--- branches/Cog/unixbuild/dbldt/mvm	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/unixbuild/dbldt/mvm	2013-06-06 21:50:39 UTC (rev 2731)
@@ -1,5 +1,6 @@
 #!/bin/sh
 # VM with VM profiler and threaded heartbeat assuming multiple thread priorities
+INSTALLDIR=cogdbglinuxpt
 echo -n "clean? "
 read a
 case $a in
@@ -12,5 +13,5 @@
 	LIBS=-lpthread \
 	LDFLAGS=-Wl,-z,now
 ../../scripts/nukeversion
-rm -rf ../../cogdbglinuxpt
-make install prefix=`(cd ../../;pwd)`/cogdbglinuxpt
+rm -rf ../../$INSTALLDIR
+make install prefix=`(cd ../../;pwd)`/$INSTALLDIR

Modified: branches/Cog/unixbuild/mtbld/mvm
===================================================================
--- branches/Cog/unixbuild/mtbld/mvm	2013-06-06 21:40:56 UTC (rev 2730)
+++ branches/Cog/unixbuild/mtbld/mvm	2013-06-06 21:50:39 UTC (rev 2731)
@@ -1,4 +1,5 @@
 #!/bin/sh
+INSTALLDIR=cogmtlinux
 # Some gcc versions create a broken VM using -O2
 case `gcc -v 2>&1 | grep version | sed 's/gcc version *//'` in
 3.4.*)	OPT=-O1;;
@@ -18,5 +19,5 @@
 	LIBS=-lpthread \
 	LDFLAGS=-Wl,-z,now
 ../../scripts/nukeversion
-rm -rf ../../cogmtlinux
-make install prefix=`(cd ../../;pwd)`/cogmtlinux
+rm -rf ../../$INSTALLDIR
+make install prefix=`(cd ../../;pwd)`/$INSTALLDIR



More information about the Vm-dev mailing list