You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by tr...@apache.org on 2005/07/01 13:56:01 UTC

svn commit: r208750 - in /maven/continuum/trunk/continuum-plexus-application: gcj.sh plexus-jamvm.sh plexus-kaffe.sh plexus-sablevm.sh

Author: trygvis
Date: Fri Jul  1 04:56:01 2005
New Revision: 208750

URL: http://svn.apache.org/viewcvs?rev=208750&view=rev
Log:
o Adding my own experiments. They probably won't work for you.

Added:
    maven/continuum/trunk/continuum-plexus-application/gcj.sh   (with props)
    maven/continuum/trunk/continuum-plexus-application/plexus-jamvm.sh   (with props)
    maven/continuum/trunk/continuum-plexus-application/plexus-kaffe.sh   (with props)
    maven/continuum/trunk/continuum-plexus-application/plexus-sablevm.sh   (with props)

Added: maven/continuum/trunk/continuum-plexus-application/gcj.sh
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-plexus-application/gcj.sh?rev=208750&view=auto
==============================================================================
--- maven/continuum/trunk/continuum-plexus-application/gcj.sh (added)
+++ maven/continuum/trunk/continuum-plexus-application/gcj.sh Fri Jul  1 04:56:01 2005
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+rm -rf core
+mkdir core
+mkdir core/boot
+find old_core -name \*.jar -maxdepth 1 -printf " %f\n" | xargs --replace=X gcj -Wall -I core -I core/boot -shared -o core/lib-X.so old_core/X
+gcj -Wall -I core -I core/boot --main=org.codehaus.classworlds.Launcher -o core/boot/lib-classworlds-1.1-alpha-1.jar.so old_core/boot/classworlds-1.1-alpha-1.jar

Propchange: maven/continuum/trunk/continuum-plexus-application/gcj.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/continuum/trunk/continuum-plexus-application/gcj.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: maven/continuum/trunk/continuum-plexus-application/plexus-jamvm.sh
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-plexus-application/plexus-jamvm.sh?rev=208750&view=auto
==============================================================================
--- maven/continuum/trunk/continuum-plexus-application/plexus-jamvm.sh (added)
+++ maven/continuum/trunk/continuum-plexus-application/plexus-jamvm.sh Fri Jul  1 04:56:01 2005
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+set -x
+
+PWD=`pwd`
+
+GNU_CLASSPATH=$HOME/opt/classpath-HEAD/share/classpath/glibj.zip
+JAVA=$HOME/opt/jamvm-1.3.0/bin/jamvm
+
+#    -Xbootclasspath:$GNU_CLASSPATH \
+#    -verbose:{class,gc,jni} \
+
+$JAVA \
+    -Xnoasyncgc \
+    -classpath $PWD/target/plexus-test-runtime/core/boot/classworlds-1.1-alpha-1.jar \
+    -Dclassworlds.conf=$PWD/target/plexus-test-runtime/conf/classworlds.conf \
+    -Dplexus.core=$PWD/target/plexus-test-runtime/core \
+    -Djava.io.tmpdir=$PWD/target/plexus-test-runtime/temp \
+    -Dtools.jar=/usr/lib/j2sdk1.4-sun/lib/tools.jar \
+    -Dplexus.home=$PWD/target/plexus-test-runtime \
+    org.codehaus.classworlds.Launcher $PWD/target/plexus-test-runtime/conf/plexus.xml

Propchange: maven/continuum/trunk/continuum-plexus-application/plexus-jamvm.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/continuum/trunk/continuum-plexus-application/plexus-jamvm.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: maven/continuum/trunk/continuum-plexus-application/plexus-kaffe.sh
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-plexus-application/plexus-kaffe.sh?rev=208750&view=auto
==============================================================================
--- maven/continuum/trunk/continuum-plexus-application/plexus-kaffe.sh (added)
+++ maven/continuum/trunk/continuum-plexus-application/plexus-kaffe.sh Fri Jul  1 04:56:01 2005
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+set -x
+
+JAVA=/usr/lib/j2sdk1.4-sun/bin/java 
+PWD=`pwd`
+
+#JAVA="$JAVA -verbose"
+JAVA=kaffe 
+JAVA=$HOME/opt/kaffe/bin/kaffe
+
+#    -fullversion \
+#    -Xbootclasspath/p:$HOME/opt/classpath-HEAD/share/classpath/glibj.zip \
+#    -verbose \
+$JAVA \
+    -Xmx128m \
+    -classpath $PWD/target/plexus-test-runtime/core/boot/classworlds-1.1-alpha-1.jar \
+    -Dclassworlds.conf=$PWD/target/plexus-test-runtime/conf/classworlds.conf \
+    -Dplexus.core=$PWD/target/plexus-test-runtime/core \
+    -Djava.io.tmpdir=$PWD/target/plexus-test-runtime/temp \
+    -Dtools.jar=/usr/lib/j2sdk1.4-sun/lib/tools.jar \
+    -Dplexus.home=$PWD/target/plexus-test-runtime \
+    org.codehaus.classworlds.Launcher $PWD/target/plexus-test-runtime/conf/plexus.xml

Propchange: maven/continuum/trunk/continuum-plexus-application/plexus-kaffe.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/continuum/trunk/continuum-plexus-application/plexus-kaffe.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: maven/continuum/trunk/continuum-plexus-application/plexus-sablevm.sh
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-plexus-application/plexus-sablevm.sh?rev=208750&view=auto
==============================================================================
--- maven/continuum/trunk/continuum-plexus-application/plexus-sablevm.sh (added)
+++ maven/continuum/trunk/continuum-plexus-application/plexus-sablevm.sh Fri Jul  1 04:56:01 2005
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+set -x
+
+PWD=`pwd`
+
+GNU_CLASSPATH=$HOME/opt/classpath-HEAD/share/classpath/glibj.zip
+JAVA=$HOME/opt/sablevm-trunk/bin/sablevm
+
+$JAVA \
+    -Xbootclasspath $GNU_CLASSPATH \
+    -classpath $PWD/target/plexus-test-runtime/core/boot/classworlds-1.1-alpha-1.jar \
+    -Dclassworlds.conf=$PWD/target/plexus-test-runtime/conf/classworlds.conf \
+    -Dplexus.core=$PWD/target/plexus-test-runtime/core \
+    -Djava.io.tmpdir=$PWD/target/plexus-test-runtime/temp \
+    -Dplexus.home=$PWD/target/plexus-test-runtime \
+    org.codehaus.classworlds.Launcher $PWD/target/plexus-test-runtime/conf/plexus.xml

Propchange: maven/continuum/trunk/continuum-plexus-application/plexus-sablevm.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/continuum/trunk/continuum-plexus-application/plexus-sablevm.sh
------------------------------------------------------------------------------
    svn:executable = *