src/share/bin/launcher.sh-template

Wed, 06 Apr 2011 20:33:44 -0700

author
ohair
date
Wed, 06 Apr 2011 20:33:44 -0700
changeset 962
0ff2bbd38f10
parent 871
bfa59f3e84bd
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7033660: Update copyright year to 2011 on any files changed in 2011
Reviewed-by: dholmes

     1 #!/bin/sh
     3 #
     4 # Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
     5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     6 #
     7 # This code is free software; you can redistribute it and/or modify it
     8 # under the terms of the GNU General Public License version 2 only, as
     9 # published by the Free Software Foundation.  Oracle designates this
    10 # particular file as subject to the "Classpath" exception as provided
    11 # by Oracle in the LICENSE file that accompanied this code.
    12 #
    13 # This code is distributed in the hope that it will be useful, but WITHOUT
    14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    15 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    16 # version 2 for more details (a copy is included in the LICENSE file that
    17 # accompanied this code).
    18 #
    19 # You should have received a copy of the GNU General Public License version
    20 # 2 along with this work; if not, write to the Free Software Foundation,
    21 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    22 #
    23 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    24 # or visit www.oracle.com if you need additional information or have any
    25 # questions.
    26 #
    28 mydir="`dirname $0`"
    29 case `uname -s` in
    30     CYGWIN*)
    31       mydir=`cygpath -m $mydir`
    32       ;;
    33 esac
    34 mylib="$mydir/../lib"
    36 # By default, put the jar file and its dependencies on the bootclasspath.
    37 # This is always required on a Mac, because the system langtools classes
    38 # are always on the main class path; in addition, it may be required on
    39 # standard versions of JDK (i.e. using rt.jar and tools.jar) because some
    40 # langtools interfaces are in rt.jar.
    41 # Assume that the jar file being invoked lists all the necessary langtools
    42 # jar files in its Class-Path manifest entry, so there is no need to search
    43 # dependent jar files for additional dependencies.
    45 if [ "$LANGTOOLS_USE_BOOTCLASSPATH" != "no" ]; then
    46    cp=`unzip -c "$mylib/#PROGRAM#.jar" META-INF/MANIFEST.MF |
    47        grep "Class-Path:" |
    48        sed -e 's|Class-Path: *||' -e 's|\([a-z]*\.jar\) *|'"$mylib"'/\1#PS#|g'`
    49    bcp="$mylib/#PROGRAM#.jar#PS#$cp"
    50 fi
    52 # tools currently assumes that assertions are enabled in the launcher
    53 ea=-ea:com.sun.tools...
    55 # Any parameters starting with -J are passed to the JVM.
    56 # All other parameters become parameters of #PROGRAM#.
    58 # Separate out -J* options for the JVM
    59 # Unset IFS and use newline as arg separator to preserve spaces in args
    60 DUALCASE=1  # for MKS: make case statement case-sensitive (6709498)
    61 saveIFS="$IFS"
    62 nl='
    63 '
    64 for i in "$@" ; do
    65    IFS=
    66    case $i in
    67    -J* )       javaOpts=$javaOpts$nl`echo $i | sed -e 's/^-J//'` ;;
    68    *   )       toolOpts=$toolOpts$nl$i ;;
    69    esac
    70    IFS="$saveIFS"
    71 done
    72 unset DUALCASE
    74 IFS=$nl
    75 "#TARGET_JAVA#" "${bcp:+-Xbootclasspath/p:"$bcp"}" ${ea} ${javaOpts} -jar "${mylib}/#PROGRAM#.jar" ${toolOpts}

mercurial