make/autoconf/configure
author ihse
Mon, 05 Feb 2018 09:15:32 +0100
changeset 48743 ba52fa7bbf14
parent 47871 5ab3961d20dd
child 48764 76ebfaa3cc3f
permissions -rw-r--r--
8195689: Remove generated-configure.sh and instead use autoconf Reviewed-by: erikj
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
#
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
     3
# Copyright (c) 2012, 2018, 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
47346
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47313
diff changeset
    26
  echo "ERROR: Calling this wrapper script directly is not supported."
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
    27
  echo "Use the 'configure' script in the top-level directory instead."
47346
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47313
diff changeset
    28
  exit 1
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    29
fi
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    30
47346
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47313
diff changeset
    31
# The next argument is the absolute top-level directory path.
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47313
diff changeset
    32
# The TOPDIR variable is passed on to configure.ac.
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47313
diff changeset
    33
TOPDIR="$2"
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47313
diff changeset
    34
# Remove these two arguments to get to the user supplied arguments
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47313
diff changeset
    35
shift
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47313
diff changeset
    36
shift
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47313
diff changeset
    37
28358
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    38
if test "x$BASH" = x; then
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    39
  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
    40
  exit 1
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    41
fi
28813
827e40c396a6 8072732: Regression in configure due to JDK-8069057
ihse
parents: 28358
diff changeset
    42
# 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
    43
export CONFIG_SHELL=$BASH
28813
827e40c396a6 8072732: Regression in configure due to JDK-8069057
ihse
parents: 28358
diff changeset
    44
export _as_can_reexec=no
28358
4be84366834a 8069057: Make sure configure is run by bash
ihse
parents: 24655
diff changeset
    45
47313
eb28be8f935d 8188768: Fix interaction between make and autoconf after consolidation
ihse
parents: 47217
diff changeset
    46
if test "x$CUSTOM_CONFIG_DIR" != x; then
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    47
  custom_hook=$CUSTOM_CONFIG_DIR/custom-hook.m4
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    48
  if test ! -e $custom_hook; then
47313
eb28be8f935d 8188768: Fix interaction between make and autoconf after consolidation
ihse
parents: 47217
diff changeset
    49
    echo "CUSTOM_CONFIG_DIR not pointing to a proper custom config dir."
eb28be8f935d 8188768: Fix interaction between make and autoconf after consolidation
ihse
parents: 47217
diff changeset
    50
    echo "Error: Cannot continue" 1>&2
eb28be8f935d 8188768: Fix interaction between make and autoconf after consolidation
ihse
parents: 47217
diff changeset
    51
    exit 1
eb28be8f935d 8188768: Fix interaction between make and autoconf after consolidation
ihse
parents: 47217
diff changeset
    52
  fi
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    53
  build_support_dir="$CUSTOM_ROOT/.build"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    54
else
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    55
  build_support_dir="$TOPDIR/.build"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    56
fi
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    57
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    58
conf_script_dir="$TOPDIR/make/autoconf"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    59
generated_script="$build_support_dir/generated-configure.sh"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    60
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    61
###
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    62
### Use autoconf to create a runnable configure script, if needed
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    63
###
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    64
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    65
autoconf_missing_help() {
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    66
  APT_GET="`which apt-get 2> /dev/null | grep -v '^no apt-get in'`"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    67
  YUM="`which yum 2> /dev/null | grep -v '^no yum in'`"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    68
  BREW="`which brew 2> /dev/null | grep -v '^no brew in'`"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    69
  CYGWIN="`which cygpath 2> /dev/null | grep -v '^no cygpath in'`"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    70
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    71
  if test "x$APT_GET" != x; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    72
    PKGHANDLER_COMMAND="sudo apt-get install autoconf"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    73
  elif test "x$YUM" != x; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    74
    PKGHANDLER_COMMAND="sudo yum install autoconf"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    75
  elif test "x$BREW" != x; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    76
    PKGHANDLER_COMMAND="brew install autoconf"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    77
  elif test "x$CYGWIN" != x; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    78
    PKGHANDLER_COMMAND="( cd <location of cygwin setup.exe> && cmd /c setup -q -P autoconf )"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    79
  fi
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    80
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    81
  if test "x$PKGHANDLER_COMMAND" != x; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    82
    echo "You might be able to fix this by running '$PKGHANDLER_COMMAND'."
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    83
  fi
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    84
}
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    85
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    86
generate_configure_script() {
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    87
  if test "x$AUTOCONF" != x; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    88
    if test ! -x "$AUTOCONF"; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    89
      echo
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    90
      echo "The specified AUTOCONF variable does not point to a valid autoconf executable:"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    91
      echo "AUTOCONF=$AUTOCONF"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    92
      echo "Error: Cannot continue" 1>&2
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    93
      exit 1
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    94
    fi
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    95
  else
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    96
    AUTOCONF="`which autoconf 2> /dev/null | grep -v '^no autoconf in'`"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    97
    if test "x$AUTOCONF" = x; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    98
      echo
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
    99
      echo "Autoconf is not found on the PATH, and AUTOCONF is not set."
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   100
      echo "You need autoconf to be able to generate a runnable configure script."
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   101
      autoconf_missing_help
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   102
      echo "Error: Cannot find autoconf" 1>&2
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   103
      exit 1
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   104
    fi
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   105
  fi
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   106
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   107
  autoconf_version=`$AUTOCONF --version | head -1`
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   108
  echo "Using autoconf at ${AUTOCONF} [$autoconf_version]"
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   109
47313
eb28be8f935d 8188768: Fix interaction between make and autoconf after consolidation
ihse
parents: 47217
diff changeset
   110
  if test "x$CUSTOM_CONFIG_DIR" != x; then
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   111
    # Generate configure script with custom hooks compiled in.
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   112
    custom_patcher='sed -e "s|#CUSTOM_AUTOCONF_INCLUDE|m4_include([$custom_hook])|"'
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   113
  else
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   114
    custom_patcher='cat'
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   115
  fi
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   116
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   117
  mkdir -p `dirname $generated_script`
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   118
  # Call autoconf but replace the "magic" variable in configure.ac if requested.
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   119
  cat $conf_script_dir/configure.ac | eval $custom_patcher | \
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   120
      ${AUTOCONF} -W all -I$conf_script_dir - > $generated_script
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   121
  rm -rf autom4te.cache
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   122
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   123
  # Sanity check
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   124
  if test ! -s $generated_script; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   125
    echo "Error: Failed to generate runnable configure script" 1>&2
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   126
    rm -f $generated_script
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   127
    exit 1
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   128
  fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   129
}
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   130
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   131
test_generated_up_to_date() {
24655
6940eba5402c 8044733: common/autoconf/configure script doesn't properly detect missing tools
mduigou
parents: 22729
diff changeset
   132
  if test "x`which hg 2> /dev/null | grep -v '^no hg in'`" != x; then
47871
5ab3961d20dd 8191204: Post-consolidation cleaning up of the build system
ihse
parents: 47346
diff changeset
   133
    conf_updated_autoconf_files=`cd $conf_script_dir && hg status -mard . 2> /dev/null`
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   134
    conf_source_files="$conf_script_dir/configure.ac $conf_script_dir/*.m4"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   135
    if test "x$CUSTOM_CONFIG_DIR" != x; then
47871
5ab3961d20dd 8191204: Post-consolidation cleaning up of the build system
ihse
parents: 47346
diff changeset
   136
      conf_custom_updated_autoconf_files=`cd $CUSTOM_CONFIG_DIR && hg status -mard . 2> /dev/null`
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   137
      conf_custom_source_files="$CUSTOM_CONFIG_DIR/*.m4"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   138
    else
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   139
      conf_custom_updated_autoconf_files=""
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   140
      conf_custom_source_files=""
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   141
    fi
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   142
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   143
    if test "x${conf_updated_autoconf_files}${conf_custom_updated_autoconf_files}" != x; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   144
      for file in $conf_source_files $conf_custom_source_files ; do
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   145
        if test $file -nt $generated_script; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   146
          return 0
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   147
        fi
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   148
      done
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   149
    fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   150
  fi
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   151
  return 1
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   152
}
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   153
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   154
run_autoconf=false
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   155
if test "x$1" = xautogen; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   156
  # User called us as "configure autogen", so force regeneration
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   157
  run_autoconf=true
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   158
  shift
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   159
fi
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   160
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   161
if test ! -s $generated_script; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   162
  # Generated script is missing, so we need to create it
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   163
  echo "Runnable configure script is not present"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   164
  run_autoconf=true
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   165
else
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   166
  # File is present, but is it up to date?
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   167
  if test_generated_up_to_date; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   168
    echo "Runnable configure script is not up to date"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   169
    run_autoconf=true
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   170
  fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   171
fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   172
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   173
if test "x$run_autoconf" = xtrue; then
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   174
  echo "Generating runnable configure script"
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   175
  generate_configure_script
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   176
fi
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   177
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   178
# Autoconf calls the configure script recursively sometimes.
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   179
# Don't start logging twice in that case
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   180
if test "x$conf_debug_configure" = xtrue; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   181
  conf_debug_configure=recursive
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   182
fi
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   183
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   184
###
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   185
### Process command-line arguments
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   186
###
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   187
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   188
# Returns a shell-escaped version of the argument given.
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   189
function shell_quote() {
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   190
  if [[ -n "$1" ]]; then
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   191
    # Uses only shell-safe characters?  No quoting needed.
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   192
    # '=' 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
   193
    if echo "$1" | grep '^[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\.:,%/+=_-]\{1,\}$' > /dev/null \
ef9f87d39598 8036145: Solaris standard grep does not understand -qE
erikj
parents: 22727
diff changeset
   194
        && ! echo "$1" | grep '^=' > /dev/null; then
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   195
      quoted="$1"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   196
    else
22729
ef9f87d39598 8036145: Solaris standard grep does not understand -qE
erikj
parents: 22727
diff changeset
   197
      if echo "$1" | grep "[\'!]" > /dev/null; then
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   198
        # csh does history expansion within single quotes, but not
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   199
        # when backslash-escaped!
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   200
        local quoted_quote="'\\''" quoted_exclam="'\\!'"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   201
        word="${1//\'/${quoted_quote}}"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   202
        word="${1//\!/${quoted_exclam}}"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   203
      fi
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   204
      quoted="'$1'"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   205
    fi
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   206
    echo "$quoted"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   207
  fi
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   208
}
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   209
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   210
conf_processed_arguments=()
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   211
conf_quoted_arguments=()
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   212
conf_openjdk_target=
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   213
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   214
for conf_option
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   215
do
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   216
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   217
  # 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
   218
  case $conf_option in
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   219
    --openjdk-target=*)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   220
      conf_openjdk_target=`expr "X$conf_option" : '[^=]*=\(.*\)'`
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   221
      ;;
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   222
    --debug-configure)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   223
      if test "x$conf_debug_configure" != xrecursive; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   224
        conf_debug_configure=true
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   225
        export conf_debug_configure
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   226
      fi
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   227
      ;;
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   228
    *)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   229
      conf_processed_arguments=("${conf_processed_arguments[@]}" "$conf_option")
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   230
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   231
  esac
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   232
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   233
  # Store all variables overridden on the command line
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   234
  case $conf_option in
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   235
    [^-]*=*)
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   236
      # 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
   237
      conf_env_var=`expr "x$conf_option" : 'x\([^=]*\)='`
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   238
      CONFIGURE_OVERRIDDEN_VARIABLES="$CONFIGURE_OVERRIDDEN_VARIABLES!$conf_env_var!"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   239
      ;;
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   240
  esac
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   241
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   242
  # Save the arguments, intelligently quoted for CONFIGURE_COMMAND_LINE.
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   243
  case $conf_option in
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   244
    *=*)
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   245
      conf_option_name=`expr "x$conf_option" : 'x\([^=]*\)='`
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   246
      conf_option_name=$(shell_quote "$conf_option_name")
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   247
      conf_option_value=`expr "x$conf_option" : 'x[^=]*=\(.*\)'`
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   248
      conf_option_value=$(shell_quote "$conf_option_value")
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   249
      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
   250
      ;;
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   251
    *)
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   252
      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
   253
      ;;
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   254
  esac
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   255
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   256
  # Check for certain autoconf options that require extra action
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   257
  case $conf_option in
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   258
    -build | --build | --buil | --bui | --bu |-build=* | --build=* | --buil=* | --bui=* | --bu=*)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   259
      conf_legacy_crosscompile="$conf_legacy_crosscompile $conf_option" ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   260
    -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
   261
      conf_legacy_crosscompile="$conf_legacy_crosscompile $conf_option" ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   262
    -host | --host | --hos | --ho | -host=* | --host=* | --hos=* | --ho=*)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   263
      conf_legacy_crosscompile="$conf_legacy_crosscompile $conf_option" ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   264
    -help | --help | --hel | --he | -h)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19759
diff changeset
   265
      conf_print_help=true ;;
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   266
  esac
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   267
done
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   268
22716
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   269
# Save the quoted command line
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   270
CONFIGURE_COMMAND_LINE="${conf_quoted_arguments[@]}"
cf32fe2eb254 8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents: 22714
diff changeset
   271
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   272
if test "x$conf_legacy_crosscompile" != "x"; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   273
  if test "x$conf_openjdk_target" != "x"; then
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   274
    echo "Error: Specifying --openjdk-target together with autoconf"
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   275
    echo "legacy cross-compilation flags is not supported."
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   276
    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
   277
    echo "The recommended use is just --openjdk-target."
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   278
    exit 1
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   279
  else
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   280
    echo "Warning: You are using legacy autoconf cross-compilation flags."
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   281
    echo "It is recommended that you use --openjdk-target instead."
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   282
    echo ""
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   283
  fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   284
fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   285
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   286
if test "x$conf_openjdk_target" != "x"; then
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   287
  conf_build_platform=`sh $conf_script_dir/build-aux/config.guess`
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   288
  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
   289
fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   290
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   291
# Make configure exit with error on invalid options as default.
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   292
# 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
   293
# and later options override earlier.
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   294
conf_processed_arguments=("--enable-option-checking=fatal" "${conf_processed_arguments[@]}")
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   295
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   296
###
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   297
### Call the configure script
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   298
###
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   299
if test "x$conf_debug_configure" != x; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   300
  # Turn on shell debug output if requested (initial or recursive)
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   301
  set -x
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   302
fi
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   303
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28813
diff changeset
   304
# 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
   305
# main work is done.
34491
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   306
RCDIR=`mktemp -dt jdk-build-configure.tmp.XXXXXX` || exit $?
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   307
trap "rm -rf \"$RCDIR\"" EXIT
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28813
diff changeset
   308
conf_logfile=./configure.log
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   309
(exec 3>&1 ; ((. $generated_script "${conf_processed_arguments[@]}" 2>&1 1>&3 ) \
34491
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   310
    ; echo $? > "$RCDIR/rc" ) \
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   311
    | 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
   312
34491
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 30417
diff changeset
   313
conf_result_code=`cat "$RCDIR/rc"`
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   314
###
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   315
### Post-processing
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   316
###
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   317
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   318
if test $conf_result_code -eq 0; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   319
  if test "x$conf_print_help" = xtrue; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   320
    cat <<EOT
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   321
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   322
Additional (non-autoconf) OpenJDK Options:
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   323
  --openjdk-target=TARGET cross-compile with TARGET as target platform
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   324
                          (i.e. the one you will run the resulting binary on).
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   325
                          Equivalent to --host=TARGET --target=TARGET
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   326
                          --build=<current platform>
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   327
  --debug-configure       Run the configure script with additional debug
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   328
                          logging enabled.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   329
22721
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   330
EOT
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   331
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   332
    # 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
   333
    # This must be done by the autoconf script.
48743
ba52fa7bbf14 8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents: 47871
diff changeset
   334
    ( CONFIGURE_PRINT_ADDITIONAL_HELP=true . $generated_script PRINTF=printf )
22721
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   335
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   336
    cat <<EOT
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22716
diff changeset
   337
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   338
Please be aware that, when cross-compiling, the OpenJDK configure script will
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   339
generally use 'target' where autoconf traditionally uses 'host'.
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   340
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 20363
diff changeset
   341
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
   342
environment will generally be ignored, unlike traditional autoconf scripts.
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   343
EOT
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   344
  fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   345
else
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   346
  echo configure exiting with result code $conf_result_code
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   347
fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   348
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   349
exit $conf_result_code