agent/make/start-debug-server

changeset 0
f90c822e73f8
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/agent/make/start-debug-server	Wed Apr 27 01:25:04 2016 +0800
     1.3 @@ -0,0 +1,18 @@
     1.4 +#!/bin/sh
     1.5 +
     1.6 +STARTDIR=`dirname $0`
     1.7 +
     1.8 +if [ "x$SA_JAVA" = "x" ]; then
     1.9 +   SA_JAVA=java
    1.10 +fi
    1.11 +
    1.12 +if [ -f $STARTDIR/sa.jar ] ; then
    1.13 +  CP=$STARTDIR/sa.jar
    1.14 +else
    1.15 +  CP=$STARTDIR/../build/classes
    1.16 +fi
    1.17 +
    1.18 +# License file for development version of dbx
    1.19 +setenv LM_LICENSE_FILE 7588@extend.eng:/usr/dist/local/config/sparcworks/license.dat:7588@setlicense
    1.20 +
    1.21 +$SA_JAVA -Xbootclasspath/p:$CP -Djava.rmi.server.codebase=file:/$CP -Djava.security.policy=$STARTDIR\/grantAll.policy sun.jvm.hotspot.DebugServer $*

mercurial