common/autoconf/compare.sh.in
author erikj
Thu, 28 Apr 2016 16:18:59 +0200
changeset 37651 993399568864
parent 37405 b406a1747788
child 37972 e1fa5c2e62a0
permissions -rw-r--r--
8155641: Correct merge typo in compare script Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
     1
#!/bin/bash
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
     2
#
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 20363
diff changeset
     3
# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
     4
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
     5
#
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
     6
# This code is free software; you can redistribute it and/or modify it
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
     7
# under the terms of the GNU General Public License version 2 only, as
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
     8
# published by the Free Software Foundation.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
     9
#
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    10
# This code is distributed in the hope that it will be useful, but WITHOUT
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    11
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    12
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    13
# version 2 for more details (a copy is included in the LICENSE file that
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    14
# accompanied this code).
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    15
#
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    16
# You should have received a copy of the GNU General Public License version
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    17
# 2 along with this work; if not, write to the Free Software Foundation,
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    18
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    19
#
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    20
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    21
# or visit www.oracle.com if you need additional information or have any
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    22
# questions.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    23
#
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    24
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 16661
diff changeset
    25
# This script is processed by configure before it's usable. It is run from
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    26
# the root of the build directory.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    27
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    28
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    29
##########################################################################################
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    30
# Substitutions from autoconf
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    31
32718
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    32
export LEGACY_BUILD_DIR=@OPENJDK_TARGET_OS@-@OPENJDK_TARGET_CPU_LEGACY@
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    33
37651
993399568864 8155641: Correct merge typo in compare script
erikj
parents: 37405
diff changeset
    34
export OPENJDK_TARGET_OS="@OPENJDK_TARGET_OS@"
32718
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    35
export OPENJDK_TARGET_CPU="@OPENJDK_TARGET_CPU@"
35744
4f5e0998b6e9 8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents: 33441
diff changeset
    36
export OPENJDK_TARGET_CPU_LIBDIR="@OPENJDK_TARGET_CPU_LIBDIR@"
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35744
diff changeset
    37
export DEBUG_LEVEL="@DEBUG_LEVEL@"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    38
32718
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    39
export AWK="@AWK@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    40
export BASH="@BASH@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    41
export CAT="@CAT@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    42
export CMP="@CMP@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    43
export CP="@CP@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    44
export CUT="@CUT@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    45
export DIFF="@DIFF@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    46
export DUMPBIN="@FIXPATH@ @DUMPBIN@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    47
export EXPR="@EXPR@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    48
export FILE="@FILE@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    49
export FIND="@FIND@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    50
export GREP="@GREP@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    51
export LDD="@LDD@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    52
export LN="@LN@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    53
export MKDIR="@MKDIR@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    54
export MV="@MV@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    55
export NAWK="@NAWK@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    56
export NM="@GNM@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    57
export OBJDUMP="@OBJDUMP@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    58
export OTOOL="@OTOOL@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    59
export PRINTF="@PRINTF@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    60
export READELF="@READELF@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    61
export RM="@RM@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    62
export SED="@SED@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    63
export SORT="@SORT@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    64
export STAT="@STAT@"
32812
ddehaven
parents: 32718 32811
diff changeset
    65
export STRIP="@STRIP@ @STRIPFLAGS@"
32718
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    66
export TEE="@TEE@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    67
export UNIQ="@UNIQ@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    68
export UNPACK200="@FIXPATH@ @BOOT_JDK@/bin/unpack200"
33031
e208908e7d48 8139969: Fix unzip in compare.sh broken by JDK-8136813
ihse
parents: 32812
diff changeset
    69
export UNARCHIVE="@UNZIP@ -q"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    70
32718
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    71
export SRC_ROOT="@TOPDIR@"
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    72
export OUTPUT_ROOT="@OUTPUT_ROOT@"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    73
36789
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    74
if [ "@COMPILE_TYPE@" != "cross" ]; then
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    75
    export JAVAP="@FIXPATH@ $OUTPUT_ROOT/jdk/bin/javap @JAVA_TOOL_FLAGS_SMALL@"
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    76
    export JIMAGE="@FIXPATH@ $OUTPUT_ROOT/jdk/bin/jimage"
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    77
elif [ "@CREATE_BUILDJDK@" = "true" ]; then
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    78
    export JAVAP="@FIXPATH@ $OUTPUT_ROOT/buildjdk/jdk/bin/javap @JAVA_TOOL_FLAGS_SMALL@"
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    79
    export JIMAGE="@FIXPATH@ $OUTPUT_ROOT/buildjdk/jdk/bin/jimage"
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    80
else
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    81
    export JAVAP="@FIXPATH@ @BUILD_JDK@/bin/javap @JAVA_TOOL_FLAGS_SMALL@"
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    82
    export JIMAGE="@FIXPATH@ @BUILD_JDK@/bin/jimage"
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    83
fi
46a9456815a3 8152691: Compare script broken after Module system
erikj
parents: 35744
diff changeset
    84
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    85
if [ "$OPENJDK_TARGET_OS" = "windows" ]; then
32718
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    86
  export PATH="@VS_PATH@"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    87
fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    88
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    89
# Now locate the main script and run it.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    90
REAL_COMPARE_SCRIPT="$SRC_ROOT/common/bin/compare.sh"
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    91
if [ ! -e "$REAL_COMPARE_SCRIPT" ]; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 16661
diff changeset
    92
  echo "Error: Cannot locate compare script, it should have been in $REAL_COMPARE_SCRIPT"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 16661
diff changeset
    93
  exit 1
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    94
fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents:
diff changeset
    95
32718
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    96
# Rotate logs
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    97
$RM $OUTPUT_ROOT/compare.log.old 2> /dev/null
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    98
$MV $OUTPUT_ROOT/compare.log $OUTPUT_ROOT/compare.log.old 2> /dev/null
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
    99
33441
ce975712c050 8141439: Fix compare.sh -o <otherdir> (broken by JDK-8136813)
ihse
parents: 33031
diff changeset
   100
export SCRIPT_DIR="$( cd "$( dirname "$0" )" > /dev/null && pwd )"
ce975712c050 8141439: Fix compare.sh -o <otherdir> (broken by JDK-8136813)
ihse
parents: 33031
diff changeset
   101
32718
fadee4d0b5ec 8136813: Log compare.sh output automatically to file
ihse
parents: 27602
diff changeset
   102
$BASH $SRC_ROOT/common/bin/logger.sh $OUTPUT_ROOT/compare.log $BASH "$REAL_COMPARE_SCRIPT" "$@"