Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 35633 invoked from network); 19 Jul 2006 22:24:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Jul 2006 22:24:14 -0000 Received: (qmail 78838 invoked by uid 500); 19 Jul 2006 22:24:14 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 78812 invoked by uid 500); 19 Jul 2006 22:24:14 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 78801 invoked by uid 99); 19 Jul 2006 22:24:14 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Jul 2006 15:24:14 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Jul 2006 15:24:12 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id BD8B11A981A; Wed, 19 Jul 2006 15:23:51 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r423639 - in /incubator/harmony/enhanced/drlvm/trunk/build: ./ make/ make/components/ make/components/extra/ make/components/vm/ make/targets/ Date: Wed, 19 Jul 2006 22:23:49 -0000 To: harmony-commits@incubator.apache.org From: geirm@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060719222351.BD8B11A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: geirm Date: Wed Jul 19 15:23:48 2006 New Revision: 423639 URL: http://svn.apache.org/viewvc?rev=423639&view=rev Log: Lets call it Java :) Added: incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/java_script.xml - copied, changed from r421882, incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/ij_script.xml Removed: incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/ij_script.xml Modified: incubator/harmony/enhanced/drlvm/trunk/build/build.bat incubator/harmony/enhanced/drlvm/trunk/build/build.sh incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra.xml incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/eclipse_script.xml incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmstart.xml incubator/harmony/enhanced/drlvm/trunk/build/make/deploy.xml incubator/harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml incubator/harmony/enhanced/drlvm/trunk/build/make/targets/unit.test.xml Modified: incubator/harmony/enhanced/drlvm/trunk/build/build.bat URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/build.bat?rev=423639&r1=423638&r2=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/build.bat (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/build.bat Wed Jul 19 15:23:48 2006 @@ -96,9 +96,9 @@ REM ================================================ IF NOT EXIST "%JAVA_HOME%\bin\java.exe" ( - IF NOT EXIST "%JAVA_HOME%\bin\ij.exe" ( - ECHO * Neigher "%JAVA_HOME%\bin\java.exe" nor "%JAVA_HOME%\bin\ij.exe" found. - ECHO * Make sure you have Harmony JRE or DRLVM installed on your computer and that + IF NOT EXIST "%JAVA_HOME%\bin\java.exe" ( + ECHO * Neigher "%JAVA_HOME%\bin\java.exe" nor "%JAVA_HOME%\bin\java.exe" found. + ECHO * Make sure you have Harmony JRE or DRLVM installed on your computer and that ECHO * JAVA_HOME environment variable points out to its installation dir, e.g. ECHO * SET JAVA_HOME=c:\jre GOTO ERROR @@ -109,7 +109,7 @@ ECHO * File %ANT_HOME%\bin\ant.bat not found. ECHO * Make sure you have Ant 1.6.5 or above installed from ECHO * http://ant.apache.org/bindownload.cgi and the ANT_HOME environment - ECHO * variable points to the Ant installation dir, e.g. + ECHO * variable points to the Ant installation dir, e.g. ECHO * SET ANT_HOME=c:\ant_1.6.5 GOTO ERROR ) @@ -130,12 +130,7 @@ SET CLASSPATH=%CD%\make\tmp\cpptasks\patched.classes;%CLASSPATH% SET CLASSPATH=.\make\tmp\ant-contrib.jar;%CLASSPATH% -REM Ant launcher doesn't know about ij.exe -IF EXIST "%JAVA_HOME%\bin\ij.exe" ( - SET ANT_COMMAND=%JAVA_HOME%\bin\ij.exe -Duser.timezone=en_US -classpath %ANT_HOME%\lib\ant-launcher.jar -Dant.home=%ANT_HOME% org.apache.tools.ant.launch.Launcher -cp %CLASSPATH% -Dbuild.compiler=org.eclipse.jdt.core.JDTCompilerAdapter -) ELSE ( - SET ANT_COMMAND=%ANT_HOME%\bin\ant.bat -) +SET ANT_COMMAND=%ANT_HOME%\bin\ant.bat REM Note: vm.jitrino is always complied in release mode, otherwise it makes VM debug too slow CALL "%ANT_COMMAND%" -f make/build.xml -Dvm.jitrino.cfg=release %* Modified: incubator/harmony/enhanced/drlvm/trunk/build/build.sh URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/build.sh?rev=423639&r1=423638&r2=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/build.sh (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/build.sh Wed Jul 19 15:23:48 2006 @@ -39,9 +39,6 @@ # Set default environment variables # ================================================ -if [ -z "$JAVA_HOME" ]; then - JAVA_HOME=/usr/local/jrockit-j2sdk1.4.2_04 -fi # Apache Ant 1.6.2 or higher (can be obtained at http://ant.apache.org) if [ -z "$ANT_HOME" ]; then @@ -53,13 +50,7 @@ # Check external resources / software installation # ================================================ -if [ ! -x $JAVA_HOME/bin/java ] && [ ! -x $JAVA_HOME/bin/ij ]; then - echo "* Neigher $JAVA_HOME/bin/java nor $JAVA_HOME/bin/ij found." - echo "* Make sure you have J2SDK or DRLVM installed on your computer and that" - echo "* JAVA_HOME environment variable points out to its installation dir, e.g." - echo "* export JAVA_HOME=/usr/local/jdk_1.4.2" - ERROR -elif [ ! -x $ANT_HOME/bin/ant ]; then +if [ ! -x $ANT_HOME/bin/ant ]; then echo "* File $ANT_HOME/bin/ant not found." echo "* Make sure you have Ant 1.6.5 or above installed from" echo "* http://ant.apache.org/bindownload.cgi and that ANT_HOME environment" @@ -68,7 +59,6 @@ ERROR fi -export JAVA_HOME=`(cd $JAVA_HOME;pwd)` export ANT_HOME=`(cd $ANT_HOME;pwd)` export CXX export BUILD_CFG @@ -81,11 +71,7 @@ CLASSPATH=`pwd`/make/tmp/ant-contrib.jar:$CLASSPATH export CLASSPATH -if [ -x $JAVA_HOME/bin/ij ]; then - ANT_COMMAND="$JAVA_HOME/bin/ij -Duser.timezone=en_US -classpath $ANT_HOME/lib/ant-launcher.jar -Dant.home=$ANT_HOME org.apache.tools.ant.launch.Launcher -cp $CLASSPATH " -else - ANT_COMMAND="$ANT_HOME/bin/ant --noconfig" -fi +ANT_COMMAND="$ANT_HOME/bin/ant --noconfig" # it is necessarily to compile 'vm.jitrino' in release mode Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml?rev=423639&r1=423638&r2=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/make/build.xml Wed Jul 19 15:23:48 2006 @@ -413,8 +413,8 @@ - - + + @@ -494,10 +494,10 @@ -Use generic Java* conventions for launching ij.exe +Use generic Java* conventions for launching java.exe c:\drlvm>cd bin - c:\drlvm\bin>ij -classpath . Hello + c:\drlvm\bin>java -classpath . Hello @@ -506,21 +506,21 @@ -Use generic Java* conventions for launching ij +Use generic Java* conventions for launching java $ cd bin $ LD_LIBRARY_PATH=${PWD}:<Path to ICC libs>:${LD_LIBRARY_PATH}; export LD_LIBRARY_PATH - $ ./ij -classpath . Hello + $ ./java -classpath . Hello -Use generic Java* conventions for launching ij +Use generic Java* conventions for launching java $ cd bin $ LD_LIBRARY_PATH=${PWD}:${LD_LIBRARY_PATH}; export LD_LIBRARY_PATH - $ ./ij -classpath . Hello + $ ./java -classpath . Hello Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra.xml URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra.xml?rev=423639&r1=423638&r2=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra.xml (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra.xml Wed Jul 19 15:23:48 2006 @@ -33,7 +33,7 @@ extra.eclipse_script, extra.hello, extra.hyplugin, - extra.ij_script, + extra.java_script, extra.jre_libraries, extra.log4cxx, extra.zlib" /> Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/eclipse_script.xml URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/eclipse_script.xml?rev=423639&r1=423638&r2=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/eclipse_script.xml (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/eclipse_script.xml Wed Jul 19 15:23:48 2006 @@ -37,10 +37,10 @@ Copied: incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/java_script.xml (from r421882, incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/ij_script.xml) URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/java_script.xml?p2=incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/java_script.xml&p1=incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/ij_script.xml&r1=421882&r2=423639&rev=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/ij_script.xml (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/make/components/extra/java_script.xml Wed Jul 19 15:23:48 2006 @@ -19,31 +19,31 @@ Version: $Revision: 1.1.2.6 $ --> - + Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmstart.xml URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmstart.xml?rev=423639&r1=423638&r2=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmstart.xml (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/make/components/vm/vmstart.xml Wed Jul 19 15:23:48 2006 @@ -35,7 +35,7 @@ extra.aprutil, extra.log4cxx" /> - + Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/deploy.xml URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/deploy.xml?rev=423639&r1=423638&r2=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/make/deploy.xml (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/make/deploy.xml Wed Jul 19 15:23:48 2006 @@ -25,7 +25,7 @@ - bin:ij + bin:java @@ -92,15 +92,15 @@ - + - + bin:Hello.class Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml?rev=423639&r1=423638&r2=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml Wed Jul 19 15:23:48 2006 @@ -136,7 +136,7 @@ - + @@ -145,7 +145,7 @@ - + @@ -167,7 +167,7 @@ - + Modified: incubator/harmony/enhanced/drlvm/trunk/build/make/targets/unit.test.xml URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/trunk/build/make/targets/unit.test.xml?rev=423639&r1=423638&r2=423639&view=diff ============================================================================== --- incubator/harmony/enhanced/drlvm/trunk/build/make/targets/unit.test.xml (original) +++ incubator/harmony/enhanced/drlvm/trunk/build/make/targets/unit.test.xml Wed Jul 19 15:23:48 2006 @@ -36,7 +36,7 @@ + fork="yes" forkmode="once" jvm="${build.deploy.dir}/bin/java.exe" failureproperty="some.unit.test.is.failed">