comparison runexamples.sh @ 3201:38792f959479

Merge
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Fri, 08 Jul 2011 15:00:16 +0200
parents ce2952ab2028
children 344264424174
comparison
equal deleted inserted replaced
3200:536b02e3cd2b 3201:38792f959479
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 ant -f create_examples.xml
19 COMMAND="${JDK7}/bin/java -client -d64 -graal -Xms1g -Xmx2g -esa -G:Extend -Xcomp -XX:CompileOnly=examples $* -jar examples.jar"
20 echo $COMMAND
21 $COMMAND