diff runeclipse.sh @ 3575:37daba6a4e5a

Added criutils project to bootstrap classpath.
author Doug Simon <doug.simon@oracle.com>
date Tue, 13 Sep 2011 09:24:14 +0200
parents 7d9e3ee49ac9
children cda0630a8640
line wrap: on
line diff
--- a/runeclipse.sh	Mon Sep 12 18:19:20 2011 +0200
+++ b/runeclipse.sh	Tue Sep 13 09:24:14 2011 +0200
@@ -4,15 +4,15 @@
   exit 1;
 fi
 if [ -z "${MAXINE}" ]; then
-  echo "MAXINE is not defined. It must point to a maxine repository directory."
+  echo "MAXINE is not defined. It must point to a Maxine repository directory."
   exit 1;
 fi
 if [ -z "${GRAAL}" ]; then
-  echo "GRAAL is not defined. It must point to a maxine repository directory."
+  echo "GRAAL is not defined. It must point to a Maxine repository directory."
   exit 1;
 fi
-if [ -z "${DACAPO}" ]; then
-  echo "DACAPO is not defined. It must point to a Dacapo benchmark directory."
+if [ ! -f "${DACAPO}/dacapo-9.12-bach.jar" ]; then
+  echo "DACAPO must point to a directory containing dacapo-9.12-bach.jar"
   exit 1;
 fi
 COMMAND="${JDK7}/bin/java -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal -G:-QuietBailout $* Harness --preserve -n 15 eclipse"