blob: 76d921f4b32afd66160396216cfb32e0a590f79d [file] [log] [blame]
Kelly O'Hair228c2162012-09-18 11:29:16 -07001#!/bin/bash
2#
Magnus Ihse Bursie3e6227e2016-10-11 09:49:31 +02003# Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
Kelly O'Hair228c2162012-09-18 11:29:16 -07004# 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
Magnus Ihse Bursie952d9ce2013-10-10 14:58:19 +020025# This script is processed by configure before it's usable. It is run from
Kelly O'Hair228c2162012-09-18 11:29:16 -070026# the root of the build directory.
27
28
29##########################################################################################
30# Substitutions from autoconf
31
Magnus Ihse Bursie041790c2015-09-23 10:17:38 +020032export LEGACY_BUILD_DIR=@OPENJDK_TARGET_OS@-@OPENJDK_TARGET_CPU_LEGACY@
Kelly O'Hair228c2162012-09-18 11:29:16 -070033
Erik Joelssona12239e2016-04-28 16:18:59 +020034export OPENJDK_TARGET_OS="@OPENJDK_TARGET_OS@"
Magnus Ihse Bursie041790c2015-09-23 10:17:38 +020035export OPENJDK_TARGET_CPU="@OPENJDK_TARGET_CPU@"
Erik Joelssond70a9d72016-04-06 11:16:37 +020036export DEBUG_LEVEL="@DEBUG_LEVEL@"
Kelly O'Hair228c2162012-09-18 11:29:16 -070037
Magnus Ihse Bursie041790c2015-09-23 10:17:38 +020038export AWK="@AWK@"
39export BASH="@BASH@"
40export CAT="@CAT@"
41export CMP="@CMP@"
42export CP="@CP@"
43export CUT="@CUT@"
44export DIFF="@DIFF@"
45export DUMPBIN="@FIXPATH@ @DUMPBIN@"
46export EXPR="@EXPR@"
47export FILE="@FILE@"
48export FIND="@FIND@"
49export GREP="@GREP@"
Erik Joelsson25173542016-05-04 15:29:01 +020050export GUNZIP="@GUNZIP@"
Magnus Ihse Bursie041790c2015-09-23 10:17:38 +020051export LDD="@LDD@"
52export LN="@LN@"
53export MKDIR="@MKDIR@"
54export MV="@MV@"
55export NAWK="@NAWK@"
56export NM="@GNM@"
57export OBJDUMP="@OBJDUMP@"
58export OTOOL="@OTOOL@"
59export PRINTF="@PRINTF@"
60export READELF="@READELF@"
61export RM="@RM@"
62export SED="@SED@"
63export SORT="@SORT@"
64export STAT="@STAT@"
David Dehaven38d98152015-09-28 13:10:03 -070065export STRIP="@STRIP@ @STRIPFLAGS@"
Erik Joelsson25173542016-05-04 15:29:01 +020066export TAR="@TAR@"
Magnus Ihse Bursie041790c2015-09-23 10:17:38 +020067export TEE="@TEE@"
68export UNIQ="@UNIQ@"
69export UNPACK200="@FIXPATH@ @BOOT_JDK@/bin/unpack200"
Erik Joelsson25173542016-05-04 15:29:01 +020070export UNARCHIVE="@UNZIP@ -q -o"
Kelly O'Hair228c2162012-09-18 11:29:16 -070071
Magnus Ihse Bursie041790c2015-09-23 10:17:38 +020072export SRC_ROOT="@TOPDIR@"
73export OUTPUT_ROOT="@OUTPUT_ROOT@"
Kelly O'Hair228c2162012-09-18 11:29:16 -070074
Erik Joelssond70a9d72016-04-06 11:16:37 +020075if [ "@COMPILE_TYPE@" != "cross" ]; then
76 export JAVAP="@FIXPATH@ $OUTPUT_ROOT/jdk/bin/javap @JAVA_TOOL_FLAGS_SMALL@"
77 export JIMAGE="@FIXPATH@ $OUTPUT_ROOT/jdk/bin/jimage"
78elif [ "@CREATE_BUILDJDK@" = "true" ]; then
79 export JAVAP="@FIXPATH@ $OUTPUT_ROOT/buildjdk/jdk/bin/javap @JAVA_TOOL_FLAGS_SMALL@"
80 export JIMAGE="@FIXPATH@ $OUTPUT_ROOT/buildjdk/jdk/bin/jimage"
81else
82 export JAVAP="@FIXPATH@ @BUILD_JDK@/bin/javap @JAVA_TOOL_FLAGS_SMALL@"
83 export JIMAGE="@FIXPATH@ @BUILD_JDK@/bin/jimage"
84fi
85
Kelly O'Hair228c2162012-09-18 11:29:16 -070086if [ "$OPENJDK_TARGET_OS" = "windows" ]; then
Magnus Ihse Bursie041790c2015-09-23 10:17:38 +020087 export PATH="@VS_PATH@"
Kelly O'Hair228c2162012-09-18 11:29:16 -070088fi
89
Kelly O'Hairf9c6f4b2012-10-26 14:29:57 -070090# Now locate the main script and run it.
91REAL_COMPARE_SCRIPT="$SRC_ROOT/common/bin/compare.sh"
92if [ ! -e "$REAL_COMPARE_SCRIPT" ]; then
Magnus Ihse Bursie952d9ce2013-10-10 14:58:19 +020093 echo "Error: Cannot locate compare script, it should have been in $REAL_COMPARE_SCRIPT"
94 exit 1
Kelly O'Hair228c2162012-09-18 11:29:16 -070095fi
96
Magnus Ihse Bursie041790c2015-09-23 10:17:38 +020097# Rotate logs
98$RM $OUTPUT_ROOT/compare.log.old 2> /dev/null
99$MV $OUTPUT_ROOT/compare.log $OUTPUT_ROOT/compare.log.old 2> /dev/null
100
Magnus Ihse Bursie0ac445c2015-11-05 10:58:53 +0100101export SCRIPT_DIR="$( cd "$( dirname "$0" )" > /dev/null && pwd )"
102
Magnus Ihse Bursie041790c2015-09-23 10:17:38 +0200103$BASH $SRC_ROOT/common/bin/logger.sh $OUTPUT_ROOT/compare.log $BASH "$REAL_COMPARE_SCRIPT" "$@"