comparison runexamples.sh @ 3183:35effcd5e778

Added example project. Added InliningGuide example extension.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 07 Jul 2011 18:14:50 +0200
parents
children ce2952ab2028
comparison
equal deleted inserted replaced
3182:2f764b27ca38 3183:35effcd5e778
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 -XX:+PrintCompilation $* -jar examples.jar"
20 echo $COMMAND
21 $COMMAND