author | hb |
Thu, 05 May 2016 01:52:03 -0700 | |
changeset 38346 | 5ed176fa7d97 |
parent 36526 | 3b41f1c69604 |
child 37851 | f2820cadfa38 |
permissions | -rw-r--r-- |
10 | 1 |
#!/bin/sh |
2 |
||
3 |
# |
|
36526 | 4 |
# Copyright (c) 2006, 2016, Oracle and/or its affiliates. All rights reserved. |
10 | 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 |
|
5520 | 9 |
# published by the Free Software Foundation. Oracle designates this |
10 | 10 |
# particular file as subject to the "Classpath" exception as provided |
5520 | 11 |
# by Oracle in the LICENSE file that accompanied this code. |
10 | 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 |
# |
|
5520 | 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. |
|
10 | 26 |
# |
27 |
||
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 | 34 |
mylib="$mydir/../modules" |
10 | 35 |
|
36526 | 36 |
# patch langtools modules |
37 |
bcp=-Xpatch:"$mylib" |
|
10 | 38 |
|
3149 | 39 |
# tools currently assumes that assertions are enabled in the launcher |
3654 | 40 |
ea=-ea:com.sun.tools... |
10 | 41 |
|
3149 | 42 |
# Any parameters starting with -J are passed to the JVM. |
43 |
# All other parameters become parameters of #PROGRAM#. |
|
44 |
||
45 |
# Separate out -J* options for the JVM |
|
46 |
# Unset IFS and use newline as arg separator to preserve spaces in args |
|
47 |
DUALCASE=1 # for MKS: make case statement case-sensitive (6709498) |
|
48 |
saveIFS="$IFS" |
|
49 |
nl=' |
|
50 |
' |
|
51 |
for i in "$@" ; do |
|
52 |
IFS= |
|
53 |
case $i in |
|
54 |
-J* ) javaOpts=$javaOpts$nl`echo $i | sed -e 's/^-J//'` ;; |
|
55 |
* ) toolOpts=$toolOpts$nl$i ;; |
|
56 |
esac |
|
57 |
IFS="$saveIFS" |
|
58 |
done |
|
59 |
unset DUALCASE |
|
60 |
||
5490
a237b108549d
6948251: need to quote args in langtools launcher script
jjg
parents:
4706
diff
changeset
|
61 |
IFS=$nl |
36526 | 62 |
"#TARGET_JAVA#" $bcp ${ea} ${javaOpts} #PROGRAM# ${toolOpts} |