# HG changeset patch # User Doug Simon # Date 1315898654 -7200 # Node ID 37daba6a4e5a5304b9542682dc79fc144be337f3 # Parent 4e3bcc322fdce4bb27d5fe595ac051f55bd4a142 Added criutils project to bootstrap classpath. diff -r 4e3bcc322fdc -r 37daba6a4e5a runeclipse.sh --- 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" diff -r 4e3bcc322fdc -r 37daba6a4e5a src/share/vm/runtime/arguments.cpp --- a/src/share/vm/runtime/arguments.cpp Mon Sep 12 18:19:20 2011 +0200 +++ b/src/share/vm/runtime/arguments.cpp Tue Sep 13 09:24:14 2011 +0200 @@ -2030,6 +2030,8 @@ SysClassPath scp_compiler(Arguments::get_sysclasspath()); sprintf(temp, "%s/com.oracle.max.cri/bin", maxine_dir); scp_compiler.add_prefix(temp); + sprintf(temp, "%s/com.oracle.max.criutils/bin", maxine_dir); + scp_compiler.add_prefix(temp); sprintf(temp, "%s/com.oracle.max.base/bin", maxine_dir); scp_compiler.add_prefix(temp); sprintf(temp, "%s/com.oracle.max.asmdis/bin", maxine_dir);