2012-09-18 18:29:16 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2013-04-12 22:21:17 +00:00
|
|
|
# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
|
2012-09-18 18:29:16 +00:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# This code is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License version 2 only, as
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
# version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
# accompanied this code).
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License version
|
|
|
|
# 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
|
|
|
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
# or visit www.oracle.com if you need additional information or have any
|
|
|
|
# questions.
|
|
|
|
#
|
|
|
|
|
|
|
|
# This script is processed by configure before it's usable. It is run from
|
|
|
|
# the root of the build directory.
|
|
|
|
|
|
|
|
|
|
|
|
##########################################################################################
|
|
|
|
# Substitutions from autoconf
|
|
|
|
|
|
|
|
LEGACY_BUILD_DIR=@OPENJDK_TARGET_OS@-@OPENJDK_TARGET_CPU_LEGACY@
|
|
|
|
|
|
|
|
OPENJDK_TARGET_OS="@OPENJDK_TARGET_OS@"
|
|
|
|
OPENJDK_TARGET_CPU="@OPENJDK_TARGET_CPU@"
|
|
|
|
|
|
|
|
AWK="@AWK@"
|
|
|
|
CAT="@CAT@"
|
|
|
|
CMP="@CMP@"
|
|
|
|
CP="@CP@"
|
|
|
|
CUT="@CUT@"
|
|
|
|
DIFF="@DIFF@"
|
2012-10-26 21:29:57 +00:00
|
|
|
DUMPBIN="@FIXPATH@ @DUMPBIN@"
|
2012-09-18 18:29:16 +00:00
|
|
|
EXPR="@EXPR@"
|
|
|
|
FILE="@FILE@"
|
|
|
|
FIND="@FIND@"
|
|
|
|
GREP="@GREP@"
|
2012-10-26 21:29:57 +00:00
|
|
|
JAVAP="@FIXPATH@ @BOOT_JDK@/bin/javap"
|
2012-09-18 18:29:16 +00:00
|
|
|
LDD="@LDD@"
|
|
|
|
MKDIR="@MKDIR@"
|
2013-01-04 10:31:00 +00:00
|
|
|
NAWK="@NAWK@"
|
2013-04-09 07:42:20 +00:00
|
|
|
NM="@GNM@"
|
2012-09-18 18:29:16 +00:00
|
|
|
OBJDUMP="@OBJDUMP@"
|
|
|
|
OTOOL="@OTOOL@"
|
|
|
|
PRINTF="@PRINTF@"
|
|
|
|
READELF="@READELF@"
|
|
|
|
RM="@RM@"
|
|
|
|
SED="@SED@"
|
|
|
|
SORT="@SORT@"
|
2012-10-26 21:29:57 +00:00
|
|
|
STAT="@STAT@"
|
2012-09-18 18:29:16 +00:00
|
|
|
STRIP="@POST_STRIP_CMD@"
|
|
|
|
TEE="@TEE@"
|
|
|
|
UNIQ="@UNIQ@"
|
2012-11-03 23:28:14 +00:00
|
|
|
UNPACK200="@FIXPATH@ @BOOT_JDK@/bin/unpack200"
|
2012-09-18 18:29:16 +00:00
|
|
|
UNZIP="@UNZIP@"
|
|
|
|
|
|
|
|
SRC_ROOT="@SRC_ROOT@"
|
|
|
|
|
|
|
|
if [ "$OPENJDK_TARGET_OS" = "windows" ]; then
|
2012-10-26 21:29:57 +00:00
|
|
|
PATH="@VS_PATH@"
|
2012-09-18 18:29:16 +00:00
|
|
|
fi
|
|
|
|
|
2012-10-26 21:29:57 +00:00
|
|
|
# Now locate the main script and run it.
|
|
|
|
REAL_COMPARE_SCRIPT="$SRC_ROOT/common/bin/compare.sh"
|
|
|
|
if [ ! -e "$REAL_COMPARE_SCRIPT" ]; then
|
|
|
|
echo "Error: Cannot locate compare script, it should have been in $REAL_COMPARE_SCRIPT"
|
2012-09-18 18:29:16 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-10-26 21:29:57 +00:00
|
|
|
. "$REAL_COMPARE_SCRIPT" "$@"
|