langtools/make/launcher.sh-template
author alanb
Thu, 17 Mar 2016 19:04:28 +0000
changeset 36526 3b41f1c69604
parent 33362 65ec6de1d6b4
child 37851 f2820cadfa38
permissions -rw-r--r--
8142968: Module System implementation Summary: Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Reviewed-by: jjg, jlahoda, vromero, mcimadamore, bpatel, ksrini, darcy, anazarov, dfuchs Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, jan.lahoda@oracle.com, vicente.romero@oracle.com, andreas.lundblad@oracle.com, andrey.x.nazarov@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, kumar.x.srinivasan@oracle.com, sundararajan.athijegannathan@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
#!/bin/sh
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
#
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33362
diff changeset
     4
# Copyright (c) 2006, 2016, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
#
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
# This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
# under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5490
diff changeset
     9
# published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
# particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5490
diff changeset
    11
# by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
#
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
# This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
# version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
# accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
#
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
# You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
# 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
#
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5490
diff changeset
    23
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5490
diff changeset
    24
# or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5490
diff changeset
    25
# questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
#
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
mydir="`dirname $0`"
7843
1103fac3fb5a 7008378: javac bootstrap launcher fails on cygwin when called via an absolute path
jjh
parents: 6574
diff changeset
    29
case `uname -s` in
1103fac3fb5a 7008378: javac bootstrap launcher fails on cygwin when called via an absolute path
jjh
parents: 6574
diff changeset
    30
    CYGWIN*)
1103fac3fb5a 7008378: javac bootstrap launcher fails on cygwin when called via an absolute path
jjh
parents: 6574
diff changeset
    31
      mydir=`cygpath -m $mydir`
1103fac3fb5a 7008378: javac bootstrap launcher fails on cygwin when called via an absolute path
jjh
parents: 6574
diff changeset
    32
      ;;
1103fac3fb5a 7008378: javac bootstrap launcher fails on cygwin when called via an absolute path
jjh
parents: 6574
diff changeset
    33
esac
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33362
diff changeset
    34
mylib="$mydir/../modules"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33362
diff changeset
    36
# patch langtools modules
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33362
diff changeset
    37
bcp=-Xpatch:"$mylib"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
3149
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    39
# tools currently assumes that assertions are enabled in the launcher
3654
bb3c0eeec3cb 6870706: langtools launcher issues
jjg
parents: 3154
diff changeset
    40
ea=-ea:com.sun.tools...
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
3149
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    42
# Any parameters starting with -J are passed to the JVM.
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    43
# All other parameters become parameters of #PROGRAM#.
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    44
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    45
# Separate out -J* options for the JVM
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    46
# Unset IFS and use newline as arg separator to preserve spaces in args
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    47
DUALCASE=1  # for MKS: make case statement case-sensitive (6709498)
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    48
saveIFS="$IFS"
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    49
nl='
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    50
'
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    51
for i in "$@" ; do
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    52
   IFS=
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    53
   case $i in
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    54
   -J* )       javaOpts=$javaOpts$nl`echo $i | sed -e 's/^-J//'` ;;
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    55
   *   )       toolOpts=$toolOpts$nl$i ;;
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    56
   esac
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    57
   IFS="$saveIFS"
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    58
done
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    59
unset DUALCASE
0cd06d598d6f 6843077: JSR 308: Annotations on types
jjg
parents: 10
diff changeset
    60
5490
a237b108549d 6948251: need to quote args in langtools launcher script
jjg
parents: 4706
diff changeset
    61
IFS=$nl
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 33362
diff changeset
    62
"#TARGET_JAVA#" $bcp ${ea} ${javaOpts} #PROGRAM# ${toolOpts}