source: trunk/openjdk/hotspot/agent/make/start-debug-server

Last change on this file was 2, checked in by dmik, 15 years ago

Imported OpenJDK 6 b19 sources from Oracle.

File size: 479 bytes
Line 
1#!/bin/sh
2
3STARTDIR=`dirname $0`
4
5if [ "x$SA_JAVA" = "x" ]; then
6 SA_JAVA=java
7fi
8
9if [ -f $STARTDIR/sa.jar ] ; then
10 CP=$STARTDIR/sa.jar
11else
12 CP=$STARTDIR/../build/classes
13fi
14
15# License file for development version of dbx
16setenv LM_LICENSE_FILE 7588@extend.eng:/usr/dist/local/config/sparcworks/license.dat:7588@setlicense
17
18$SA_JAVA -Xbootclasspath/p:$CP -Djava.rmi.server.codebase=file:/$CP -Djava.security.policy=$STARTDIR\/grantAll.policy sun.jvm.hotspot.DebugServer $*
Note: See TracBrowser for help on using the repository browser.