comparison runbootstrap.sh @ 2909:d6cfe798a265

merge
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Wed, 08 Jun 2011 18:57:33 +0200
parents d577d07cedec
children 344264424174
comparison
equal deleted inserted replaced
2908:d5f6a22dd959 2909:d6cfe798a265
1 #!/bin/bash 1 #!/bin/bash
2 if [ -z "${JDK7}" ]; then 2 if [ -z "${JDK7}" ]; then
3 echo "JDK7 is not defined." 3 echo "JDK7 is not defined."
4 exit 1;
5 fi
6 if [ -z "${JDK7G}" ]; then
7 echo "JDK7G is not defined."
8 exit 1; 4 exit 1;
9 fi 5 fi
10 if [ -z "${MAXINE}" ]; then 6 if [ -z "${MAXINE}" ]; then
11 echo "MAXINE is not defined. It must point to a maxine repository directory." 7 echo "MAXINE is not defined. It must point to a maxine repository directory."
12 exit 1; 8 exit 1;
13 fi 9 fi
14 if [ -z "${GRAAL}" ]; then 10 if [ -z "${GRAAL}" ]; then
15 echo "GRAAL is not defined. It must point to a maxine repository directory." 11 echo "GRAAL is not defined. It must point to a maxine repository directory."
16 exit 1; 12 exit 1;
17 fi 13 fi
18 ${JDK7}/bin/java -client -d64 -graal -version 14 ${JDK7}/bin/java -client -d64 -graal $* -version
19 ${JDK7G}/bin/java -client -d64 -graal -version