annotate agent/make/start-debug-server @ 3237:399aa66d375e

Fixed a bug in which the valueEquals method was misused. The method does only check the equality of the node data and not full GVN equality by taking inputs and successors into account.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Jul 2011 14:16:38 -0700
parents a61af66fc99e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #!/bin/sh
a61af66fc99e Initial load
duke
parents:
diff changeset
2
a61af66fc99e Initial load
duke
parents:
diff changeset
3 STARTDIR=`dirname $0`
a61af66fc99e Initial load
duke
parents:
diff changeset
4
a61af66fc99e Initial load
duke
parents:
diff changeset
5 if [ "x$SA_JAVA" = "x" ]; then
a61af66fc99e Initial load
duke
parents:
diff changeset
6 SA_JAVA=java
a61af66fc99e Initial load
duke
parents:
diff changeset
7 fi
a61af66fc99e Initial load
duke
parents:
diff changeset
8
a61af66fc99e Initial load
duke
parents:
diff changeset
9 if [ -f $STARTDIR/sa.jar ] ; then
a61af66fc99e Initial load
duke
parents:
diff changeset
10 CP=$STARTDIR/sa.jar
a61af66fc99e Initial load
duke
parents:
diff changeset
11 else
a61af66fc99e Initial load
duke
parents:
diff changeset
12 CP=$STARTDIR/../build/classes
a61af66fc99e Initial load
duke
parents:
diff changeset
13 fi
a61af66fc99e Initial load
duke
parents:
diff changeset
14
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # License file for development version of dbx
a61af66fc99e Initial load
duke
parents:
diff changeset
16 setenv LM_LICENSE_FILE 7588@extend.eng:/usr/dist/local/config/sparcworks/license.dat:7588@setlicense
a61af66fc99e Initial load
duke
parents:
diff changeset
17
a61af66fc99e Initial load
duke
parents:
diff changeset
18 $SA_JAVA -Xbootclasspath/p:$CP -Djava.rmi.server.codebase=file:/$CP -Djava.security.policy=$STARTDIR\/grantAll.policy sun.jvm.hotspot.DebugServer $*