make/autoconf/configure
author erikj
Tue, 12 Sep 2017 19:03:56 +0200
changeset 47217 72e3ae9a25eb
parent 47216 71c04702a3d5
child 47313 eb28be8f935d
permissions -rw-r--r--
8187444: Forest Consolidation: Make build work Reviewed-by: darcy, ihse Contributed-by: erik.joelsson@oracle.com, maurizio.cimadamore@oracle.com, sundararajan.athijegannathan@oracle.com, jonathan.gibbons@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
     1
#!/bin/bash
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
     2
#
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 34491
diff changeset
     3
# Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
     4
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
     5
#
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
     6
# This code is free software; you can redistribute it and/or modify it
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
     7
# under the terms of the GNU General Public License version 2 only, as
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
     8
# published by the Free Software Foundation.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
     9
#
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    10
# This code is distributed in the hope that it will be useful, but WITHOUT
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    11
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    12
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    13
# version 2 for more details (a copy is included in the LICENSE file that
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    14
# accompanied this code).
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    15
#
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    16
# You should have received a copy of the GNU General Public License version
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    17
# 2 along with this work; if not, write to the Free Software Foundation,
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    18
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    19
#
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    20
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    21
# or visit www.oracle.com if you need additional information or have any
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    22
# questions.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    23
#
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    24
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
    25
if test "x$1" != xCHECKME; then
22725
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    26
  echo "WARNING: Calling the wrapper script directly is deprecated and unsupported."
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    27
  echo "Not all features of configure will be available."
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
    28
  echo "Use the 'configure' script in the top-level directory instead."
22725
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    29
  TOPDIR=$(cd $(dirname $0)/../.. > /dev/null && pwd)
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    30
else
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    31
  # Now the next argument is the absolute top-level directory path.
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    32
  # The TOPDIR variable is passed on to configure.ac.
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    33
  TOPDIR="$2"
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    34
  # Remove these two arguments to get to the user supplied arguments
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    35
  shift
c382bed20726 8035825: Warn instead of fail when calling the configure wrapper directly
ihse
parents: 22722
diff changeset
    36
  shift
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    37
fi
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    38
28358
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    39
if test "x$BASH" = x; then
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    40
  echo "Error: This script must be run using bash." 1>&2
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    41
  exit 1
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    42
fi
28813
827e40c396a6 8072732: Regression in configure due to JDK-8069057
ihse
parents: 28358
diff changeset
    43
# Force autoconf to use bash. This also means we must disable autoconf re-exec.
28358
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    44
export CONFIG_SHELL=$BASH
28813
827e40c396a6 8072732: Regression in configure due to JDK-8069057
ihse
parents: 28358
diff changeset
    45
export _as_can_reexec=no
28358
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    46
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    47
conf_script_dir="$TOPDIR/make/autoconf"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    48
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    49
if [ "$CUSTOM_CONFIG_DIR" = "" ]; then
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
    50
  conf_custom_script_dir="$TOPDIR/closed/autoconf"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    51
else
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
    52
  conf_custom_script_dir="$CUSTOM_CONFIG_DIR"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    53
fi
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    54
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    55
###
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    56
### Test that the generated configure is up-to-date
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    57
###
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    58
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    59
run_autogen_or_fail() {
24655
6940eba5402c 8044733: common/autoconf/configure script doesn't properly detect missing tools
mduigou
parents: 22729
diff changeset
    60
  if test "x`which autoconf 2> /dev/null | grep -v '^no autoconf in'`" = x; then
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    61
    echo "Cannot locate autoconf, unable to correct situation."
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    62
    echo "Please install autoconf and run 'bash autogen.sh' to update the generated files."
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    63
    echo "Error: Cannot continue" 1>&2
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    64
    exit 1
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    65
  else
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    66
    echo "Running autogen.sh to correct the situation"
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    67
    bash $conf_script_dir/autogen.sh
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    68
  fi
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    69
}
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    70
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    71
check_autoconf_timestamps() {
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    72
  for file in $conf_script_dir/configure.ac $conf_script_dir/*.m4 ; do
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    73
    if test $file -nt $conf_script_dir/generated-configure.sh; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    74
      echo "Warning: The configure source files is newer than the generated files."
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    75
      run_autogen_or_fail
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    76
    fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    77
  done
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    78
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    79
  if test -e $conf_custom_script_dir/generated-configure.sh; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    80
    # If custom source configure is available, make sure it is up-to-date as well.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    81
    for file in $conf_script_dir/configure.ac $conf_script_dir/*.m4 $conf_custom_script_dir/*.m4; do
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    82
      if test $file -nt $conf_custom_script_dir/generated-configure.sh; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    83
        echo "Warning: The configure source files is newer than the custom generated files."
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    84
        run_autogen_or_fail
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    85
      fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    86
    done
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    87
  fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    88
}
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    89
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    90
check_hg_updates() {
24655
6940eba5402c 8044733: common/autoconf/configure script doesn't properly detect missing tools
mduigou
parents: 22729
diff changeset
    91
  if test "x`which hg 2> /dev/null | grep -v '^no hg in'`" != x; then
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    92
    conf_updated_autoconf_files=`cd $conf_script_dir && hg status -mard 2> /dev/null | grep autoconf`
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    93
    if test "x$conf_updated_autoconf_files" != x; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    94
      echo "Configure source code has been updated, checking time stamps"
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    95
      check_autoconf_timestamps
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    96
    fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    97
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    98
    if test -e $conf_custom_script_dir; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    99
      # If custom source configure is available, make sure it is up-to-date as well.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   100
      conf_custom_updated_autoconf_files=`cd $conf_custom_script_dir && hg status -mard 2> /dev/null | grep autoconf`
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   101
      if test "x$conf_custom_updated_autoconf_files" != x; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   102
        echo "Configure custom source code has been updated, checking time stamps"
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   103
        check_autoconf_timestamps
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   104
      fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   105
    fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   106
  fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   107
}
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   108
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   109
# Check for local changes
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   110
check_hg_updates
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   112
if test -e $conf_custom_script_dir/generated-configure.sh; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   113
  # Test if open configure is newer than custom configure, if so, custom needs to
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   114
  # be regenerated. This test is required to ensure consistency with custom source.
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   115
  conf_open_configure_timestamp=`grep DATE_WHEN_GENERATED= $conf_script_dir/generated-configure.sh  | cut -d"=" -f 2`
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   116
  conf_custom_configure_timestamp=`grep DATE_WHEN_GENERATED= $conf_custom_script_dir/generated-configure.sh  | cut -d"=" -f 2`
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   117
  if test $conf_open_configure_timestamp -gt $conf_custom_configure_timestamp; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   118
    echo "Warning: The generated configure file contains changes not present in the custom generated file."
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   119
    run_autogen_or_fail
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   120
  fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   121
fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   122
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   123
# Autoconf calls the configure script recursively sometimes.
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   124
# Don't start logging twice in that case
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   125
if test "x$conf_debug_configure" = xtrue; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   126
  conf_debug_configure=recursive
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   127
fi
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   128
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   129
###
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   130
### Process command-line arguments
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   131
###
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   132
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   133
# Returns a shell-escaped version of the argument given.
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   134
function shell_quote() {
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   135
  if [[ -n "$1" ]]; then
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   136
    # Uses only shell-safe characters?  No quoting needed.
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   137
    # '=' is a zsh meta-character, but only in word-initial position.
22729
ef9f87d39598 8036145: Solaris standard grep does not understand -qE
erikj
parents: 22727
diff changeset
   138
    if echo "$1" | grep '^[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\.:,%/+=_-]\{1,\}$' > /dev/null \
ef9f87d39598 8036145: Solaris standard grep does not understand -qE
erikj
parents: 22727
diff changeset
   139
        && ! echo "$1" | grep '^=' > /dev/null; then
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   140
      quoted="$1"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   141
    else
22729
ef9f87d39598 8036145: Solaris standard grep does not understand -qE
erikj
parents: 22727
diff changeset
   142
      if echo "$1" | grep "[\'!]" > /dev/null; then
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   143
        # csh does history expansion within single quotes, but not
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   144
        # when backslash-escaped!
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   145
        local quoted_quote="'\\''" quoted_exclam="'\\!'"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   146
        word="${1//\'/${quoted_quote}}"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   147
        word="${1//\!/${quoted_exclam}}"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   148
      fi
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   149
      quoted="'$1'"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   150
    fi
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   151
    echo "$quoted"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   152
  fi
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   153
}
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   154
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   155
conf_processed_arguments=()
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   156
conf_quoted_arguments=()
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   157
conf_openjdk_target=
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   158
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   159
for conf_option
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   160
do
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   161
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   162
  # Process (and remove) our own extensions that will not be passed to autoconf
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   163
  case $conf_option in
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   164
    --openjdk-target=*)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   165
      conf_openjdk_target=`expr "X$conf_option" : '[^=]*=\(.*\)'`
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   166
      ;;
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   167
    --debug-configure)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   168
      if test "x$conf_debug_configure" != xrecursive; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   169
        conf_debug_configure=true
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   170
        export conf_debug_configure
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   171
      fi
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   172
      ;;
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   173
    *)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   174
      conf_processed_arguments=("${conf_processed_arguments[@]}" "$conf_option")
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   175
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   176
  esac
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   177
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   178
  # Store all variables overridden on the command line
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   179
  case $conf_option in
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   180
    [^-]*=*)
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   181
      # Add name of variable to CONFIGURE_OVERRIDDEN_VARIABLES list inside !...!.
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   182
      conf_env_var=`expr "x$conf_option" : 'x\([^=]*\)='`
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   183
      CONFIGURE_OVERRIDDEN_VARIABLES="$CONFIGURE_OVERRIDDEN_VARIABLES!$conf_env_var!"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   184
      ;;
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   185
  esac
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   186
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   187
  # Save the arguments, intelligently quoted for CONFIGURE_COMMAND_LINE.
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   188
  case $conf_option in
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   189
    *=*)
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   190
      conf_option_name=`expr "x$conf_option" : 'x\([^=]*\)='`
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   191
      conf_option_name=$(shell_quote "$conf_option_name")
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   192
      conf_option_value=`expr "x$conf_option" : 'x[^=]*=\(.*\)'`
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   193
      conf_option_value=$(shell_quote "$conf_option_value")
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   194
      conf_quoted_arguments=("${conf_quoted_arguments[@]}" "$conf_option_name=$conf_option_value")
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   195
      ;;
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   196
    *)
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   197
      conf_quoted_arguments=("${conf_quoted_arguments[@]}" "$(shell_quote "$conf_option")")
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   198
      ;;
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   199
  esac
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   200
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   201
  # Check for certain autoconf options that require extra action
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   202
  case $conf_option in
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   203
    -build | --build | --buil | --bui | --bu |-build=* | --build=* | --buil=* | --bui=* | --bu=*)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   204
      conf_legacy_crosscompile="$conf_legacy_crosscompile $conf_option" ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   205
    -target | --target | --targe | --targ | --tar | --ta | --t | -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   206
      conf_legacy_crosscompile="$conf_legacy_crosscompile $conf_option" ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   207
    -host | --host | --hos | --ho | -host=* | --host=* | --hos=* | --ho=*)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   208
      conf_legacy_crosscompile="$conf_legacy_crosscompile $conf_option" ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   209
    -help | --help | --hel | --he | -h)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   210
      conf_print_help=true ;;
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   211
  esac
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   212
done
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   213
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   214
# Save the quoted command line
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   215
CONFIGURE_COMMAND_LINE="${conf_quoted_arguments[@]}"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   216
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   217
if test "x$conf_legacy_crosscompile" != "x"; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   218
  if test "x$conf_openjdk_target" != "x"; then
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   219
    echo "Error: Specifying --openjdk-target together with autoconf"
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   220
    echo "legacy cross-compilation flags is not supported."
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   221
    echo "You specified: --openjdk-target=$conf_openjdk_target and $conf_legacy_crosscompile."
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   222
    echo "The recommended use is just --openjdk-target."
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   223
    exit 1
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   224
  else
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   225
    echo "Warning: You are using legacy autoconf cross-compilation flags."
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   226
    echo "It is recommended that you use --openjdk-target instead."
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   227
    echo ""
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   228
  fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   229
fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   230
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   231
if test "x$conf_openjdk_target" != "x"; then
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   232
  conf_build_platform=`sh $conf_script_dir/build-aux/config.guess`
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   233
  conf_processed_arguments=("--build=$conf_build_platform" "--host=$conf_openjdk_target" "--target=$conf_openjdk_target" "${conf_processed_arguments[@]}")
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   234
fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   235
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   236
# Make configure exit with error on invalid options as default.
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   237
# Can be overridden by --disable-option-checking, since we prepend our argument
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   238
# and later options override earlier.
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   239
conf_processed_arguments=("--enable-option-checking=fatal" "${conf_processed_arguments[@]}")
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   240
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   241
###
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   242
### Call the configure script
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   243
###
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   244
if test -e $conf_custom_script_dir/generated-configure.sh; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   245
  # Custom source configure available; run that instead
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
   246
  echo "Running custom generated-configure.sh"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   247
  conf_script_to_run=$conf_custom_script_dir/generated-configure.sh
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   248
else
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
   249
  echo "Running generated-configure.sh"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   250
  conf_script_to_run=$conf_script_dir/generated-configure.sh
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   251
fi
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   252
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   253
if test "x$conf_debug_configure" != x; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   254
  # Turn on shell debug output if requested (initial or recursive)
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   255
  set -x
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   256
fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   257
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28813
diff changeset
   258
# Now transfer control to the script generated by autoconf. This is where the
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28813
diff changeset
   259
# main work is done.
34491
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   260
RCDIR=`mktemp -dt jdk-build-configure.tmp.XXXXXX` || exit $?
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   261
trap "rm -rf \"$RCDIR\"" EXIT
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28813
diff changeset
   262
conf_logfile=./configure.log
34491
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   263
(exec 3>&1 ; ((. $conf_script_to_run "${conf_processed_arguments[@]}" 2>&1 1>&3 ) \
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   264
    ; echo $? > "$RCDIR/rc" ) \
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   265
    | tee -a $conf_logfile 1>&2 ; exec 3>&-) | tee -a $conf_logfile
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   266
34491
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   267
conf_result_code=`cat "$RCDIR/rc"`
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   268
###
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   269
### Post-processing
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   270
###
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   271
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   272
if test $conf_result_code -eq 0; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   273
  if test "x$conf_print_help" = xtrue; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   274
    cat <<EOT
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   275
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   276
Additional (non-autoconf) OpenJDK Options:
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   277
  --openjdk-target=TARGET cross-compile with TARGET as target platform
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   278
                          (i.e. the one you will run the resulting binary on).
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   279
                          Equivalent to --host=TARGET --target=TARGET
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   280
                          --build=<current platform>
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   281
  --debug-configure       Run the configure script with additional debug
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   282
                          logging enabled.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   283
22721
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   284
EOT
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   285
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   286
    # Print additional help, e.g. a list of toolchains and JVM features.
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 34491
diff changeset
   287
    # This must be done by the autoconf script.
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 34491
diff changeset
   288
    ( CONFIGURE_PRINT_ADDITIONAL_HELP=true . $conf_script_to_run PRINTF=printf )
22721
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   289
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   290
    cat <<EOT
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   291
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   292
Please be aware that, when cross-compiling, the OpenJDK configure script will
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   293
generally use 'target' where autoconf traditionally uses 'host'.
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   294
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   295
Also note that variables must be passed on the command line. Variables in the
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   296
environment will generally be ignored, unlike traditional autoconf scripts.
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   297
EOT
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   298
  fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   299
else
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   300
  echo configure exiting with result code $conf_result_code
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   301
fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   302
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   303
exit $conf_result_code