comparison runeclipse.sh @ 3021:a197fd9e273c

added run scripts
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Sat, 18 Jun 2011 21:24:00 +0200
parents
children 344264424174
comparison
equal deleted inserted replaced
3020:9fed07e4a375 3021:a197fd9e273c
1 #!/bin/bash
2 if [ -z "${JDK7}" ]; then
3 echo "JDK7 is not defined."
4 exit 1;
5 fi
6 if [ -z "${MAXINE}" ]; then
7 echo "MAXINE is not defined. It must point to a maxine repository directory."
8 exit 1;
9 fi
10 if [ -z "${GRAAL}" ]; then
11 echo "GRAAL is not defined. It must point to a maxine repository directory."
12 exit 1;
13 fi
14 if [ -z "${DACAPO}" ]; then
15 echo "DACAPO is not defined. It must point to a Dacapo benchmark directory."
16 exit 1;
17 fi
18 COMMAND="${JDK7}/bin/java -client -d64 -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal -G:-QuietBailout $* Harness --preserve -n 5 eclipse"
19 echo $COMMAND
20 $COMMAND
21 echo $COMMAND