author | erikj |
Mon, 28 Sep 2015 15:51:29 +0200 | |
changeset 32811 | df82db312e58 |
parent 27602 | 236555ddac42 |
child 32812 | 7a2d9c874229 |
permissions | -rw-r--r-- |
13697 | 1 |
#!/bin/bash |
2 |
# |
|
22722 | 3 |
# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. |
13697 | 4 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
# |
|
6 |
# This code is free software; you can redistribute it and/or modify it |
|
7 |
# under the terms of the GNU General Public License version 2 only, as |
|
8 |
# published by the Free Software Foundation. |
|
9 |
# |
|
10 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
# accompanied this code). |
|
15 |
# |
|
16 |
# You should have received a copy of the GNU General Public License version |
|
17 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
# |
|
20 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
# or visit www.oracle.com if you need additional information or have any |
|
22 |
# questions. |
|
23 |
# |
|
24 |
||
20363 | 25 |
# This script is processed by configure before it's usable. It is run from |
13697 | 26 |
# the root of the build directory. |
27 |
||
28 |
||
29 |
########################################################################################## |
|
30 |
# Substitutions from autoconf |
|
31 |
||
32 |
LEGACY_BUILD_DIR=@OPENJDK_TARGET_OS@-@OPENJDK_TARGET_CPU_LEGACY@ |
|
33 |
||
34 |
OPENJDK_TARGET_OS="@OPENJDK_TARGET_OS@" |
|
35 |
OPENJDK_TARGET_CPU="@OPENJDK_TARGET_CPU@" |
|
36 |
||
37 |
AWK="@AWK@" |
|
38 |
CAT="@CAT@" |
|
39 |
CMP="@CMP@" |
|
40 |
CP="@CP@" |
|
41 |
CUT="@CUT@" |
|
42 |
DIFF="@DIFF@" |
|
14111 | 43 |
DUMPBIN="@FIXPATH@ @DUMPBIN@" |
13697 | 44 |
EXPR="@EXPR@" |
45 |
FILE="@FILE@" |
|
46 |
FIND="@FIND@" |
|
47 |
GREP="@GREP@" |
|
25854 | 48 |
JAVAP="@FIXPATH@ @BOOT_JDK@/bin/javap @JAVA_TOOL_FLAGS_SMALL@" |
27560 | 49 |
JIMAGE="@FIXPATH@ @BUILD_OUTPUT@/jdk/bin/jimage" |
13697 | 50 |
LDD="@LDD@" |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
25854
diff
changeset
|
51 |
LN="@LN@" |
13697 | 52 |
MKDIR="@MKDIR@" |
15059
4131faaca93d
8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents:
14280
diff
changeset
|
53 |
NAWK="@NAWK@" |
16582
61f0b8f48036
8006288: build-infra: Use solaris nm and not gnm on solaris
erikj
parents:
15059
diff
changeset
|
54 |
NM="@GNM@" |
13697 | 55 |
OBJDUMP="@OBJDUMP@" |
56 |
OTOOL="@OTOOL@" |
|
57 |
PRINTF="@PRINTF@" |
|
58 |
READELF="@READELF@" |
|
59 |
RM="@RM@" |
|
60 |
SED="@SED@" |
|
61 |
SORT="@SORT@" |
|
14111 | 62 |
STAT="@STAT@" |
32811
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
27602
diff
changeset
|
63 |
STRIP="@STRIP@ @STRIPFLAGS@" |
13697 | 64 |
TEE="@TEE@" |
65 |
UNIQ="@UNIQ@" |
|
14280
7d8ad47b2dbf
8002220: build-infra: update for mac, solaris 11 issues
erikj
parents:
14111
diff
changeset
|
66 |
UNPACK200="@FIXPATH@ @BOOT_JDK@/bin/unpack200" |
13697 | 67 |
UNZIP="@UNZIP@" |
68 |
||
22722 | 69 |
SRC_ROOT="@TOPDIR@" |
13697 | 70 |
|
14111 | 71 |
if [ "$OPENJDK_TARGET_OS" = "windows" ]; then |
20363 | 72 |
PATH="@VS_PATH@" |
13697 | 73 |
fi |
74 |
||
14111 | 75 |
# Now locate the main script and run it. |
76 |
REAL_COMPARE_SCRIPT="$SRC_ROOT/common/bin/compare.sh" |
|
77 |
if [ ! -e "$REAL_COMPARE_SCRIPT" ]; then |
|
20363 | 78 |
echo "Error: Cannot locate compare script, it should have been in $REAL_COMPARE_SCRIPT" |
79 |
exit 1 |
|
13697 | 80 |
fi |
81 |
||
14111 | 82 |
. "$REAL_COMPARE_SCRIPT" "$@" |