common/autoconf/configure

Sat, 07 Nov 2020 10:30:02 +0800

author
aoqi
date
Sat, 07 Nov 2020 10:30:02 +0800
changeset 2563
adaea51c14c8
parent 2316
64a3eeabf6e5
permissions
-rw-r--r--

Added tag mips-jdk8u275-b01 for changeset 4dbed6fd3891

aoqi@0 1 #!/bin/bash
aoqi@0 2 #
kevinw@2206 3 # Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
aoqi@0 4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 5 #
aoqi@0 6 # This code is free software; you can redistribute it and/or modify it
aoqi@0 7 # under the terms of the GNU General Public License version 2 only, as
aoqi@0 8 # published by the Free Software Foundation.
aoqi@0 9 #
aoqi@0 10 # This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 13 # version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 14 # accompanied this code).
aoqi@0 15 #
aoqi@0 16 # You should have received a copy of the GNU General Public License version
aoqi@0 17 # 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 19 #
aoqi@0 20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 21 # or visit www.oracle.com if you need additional information or have any
aoqi@0 22 # questions.
aoqi@0 23 #
aoqi@0 24
kevinw@2212 25 if test "x$1" != xCHECKME; then
kevinw@2213 26 echo "WARNING: Calling the wrapper script directly is deprecated and unsupported."
kevinw@2213 27 echo "Not all features of configure will be available."
kevinw@2212 28 echo "Use the 'configure' script in the top-level directory instead."
kevinw@2213 29 TOPDIR=$(cd $(dirname $0)/../.. > /dev/null && pwd)
kevinw@2213 30 else
kevinw@2213 31 # Now the next argument is the absolute top-level directory path.
kevinw@2213 32 # The TOPDIR variable is passed on to configure.ac.
kevinw@2213 33 TOPDIR="$2"
kevinw@2213 34 # Remove these two arguments to get to the user supplied arguments
kevinw@2213 35 shift
kevinw@2213 36 shift
aoqi@0 37 fi
aoqi@0 38
ihse@1323 39 # Force autoconf to use bash. This also means we must disable autoconf re-exec.
ihse@1322 40 export CONFIG_SHELL=$BASH
ihse@1323 41 export _as_can_reexec=no
ihse@1322 42
kevinw@2212 43 conf_script_dir="$TOPDIR/common/autoconf"
aoqi@0 44
aoqi@0 45 if [ "$CUSTOM_CONFIG_DIR" = "" ]; then
kevinw@2212 46 conf_custom_script_dir="$TOPDIR/jdk/make/closed/autoconf"
aoqi@0 47 else
kevinw@2212 48 conf_custom_script_dir="$CUSTOM_CONFIG_DIR"
aoqi@0 49 fi
aoqi@0 50
aoqi@0 51 ###
aoqi@0 52 ### Test that the generated configure is up-to-date
aoqi@0 53 ###
aoqi@0 54
aoqi@0 55 run_autogen_or_fail() {
aoqi@0 56 if test "x`which autoconf 2> /dev/null`" = x; then
aoqi@0 57 echo "Cannot locate autoconf, unable to correct situation."
aoqi@0 58 echo "Please install autoconf and run 'bash autogen.sh' to update the generated files."
aoqi@0 59 echo "Error: Cannot continue" 1>&2
aoqi@0 60 exit 1
aoqi@0 61 else
aoqi@0 62 echo "Running autogen.sh to correct the situation"
aoqi@0 63 bash $conf_script_dir/autogen.sh
aoqi@0 64 fi
aoqi@0 65 }
aoqi@0 66
aoqi@0 67 check_autoconf_timestamps() {
aoqi@0 68 for file in $conf_script_dir/configure.ac $conf_script_dir/*.m4 ; do
aoqi@0 69 if test $file -nt $conf_script_dir/generated-configure.sh; then
aoqi@0 70 echo "Warning: The configure source files is newer than the generated files."
aoqi@0 71 run_autogen_or_fail
aoqi@0 72 fi
aoqi@0 73 done
aoqi@0 74
aoqi@0 75 if test -e $conf_custom_script_dir/generated-configure.sh; then
aoqi@0 76 # If custom source configure is available, make sure it is up-to-date as well.
aoqi@0 77 for file in $conf_script_dir/configure.ac $conf_script_dir/*.m4 $conf_custom_script_dir/*.m4; do
aoqi@0 78 if test $file -nt $conf_custom_script_dir/generated-configure.sh; then
aoqi@0 79 echo "Warning: The configure source files is newer than the custom generated files."
aoqi@0 80 run_autogen_or_fail
aoqi@0 81 fi
aoqi@0 82 done
aoqi@0 83 fi
aoqi@0 84 }
aoqi@0 85
aoqi@0 86 check_hg_updates() {
aoqi@0 87 if test "x`which hg 2> /dev/null`" != x; then
aoqi@0 88 conf_updated_autoconf_files=`cd $conf_script_dir && hg status -mard 2> /dev/null | grep autoconf`
aoqi@0 89 if test "x$conf_updated_autoconf_files" != x; then
aoqi@0 90 echo "Configure source code has been updated, checking time stamps"
aoqi@0 91 check_autoconf_timestamps
aoqi@0 92 fi
aoqi@0 93
aoqi@0 94 if test -e $conf_custom_script_dir; then
aoqi@0 95 # If custom source configure is available, make sure it is up-to-date as well.
aoqi@0 96 conf_custom_updated_autoconf_files=`cd $conf_custom_script_dir && hg status -mard 2> /dev/null | grep autoconf`
aoqi@0 97 if test "x$conf_custom_updated_autoconf_files" != x; then
aoqi@0 98 echo "Configure custom source code has been updated, checking time stamps"
aoqi@0 99 check_autoconf_timestamps
aoqi@0 100 fi
aoqi@0 101 fi
aoqi@0 102 fi
aoqi@0 103 }
aoqi@0 104
aoqi@0 105 # Check for local changes
aoqi@0 106 check_hg_updates
aoqi@0 107
aoqi@0 108 if test -e $conf_custom_script_dir/generated-configure.sh; then
aoqi@0 109 # Test if open configure is newer than custom configure, if so, custom needs to
aoqi@0 110 # be regenerated. This test is required to ensure consistency with custom source.
aoqi@0 111 conf_open_configure_timestamp=`grep DATE_WHEN_GENERATED= $conf_script_dir/generated-configure.sh | cut -d"=" -f 2`
aoqi@0 112 conf_custom_configure_timestamp=`grep DATE_WHEN_GENERATED= $conf_custom_script_dir/generated-configure.sh | cut -d"=" -f 2`
aoqi@0 113 if test $conf_open_configure_timestamp -gt $conf_custom_configure_timestamp; then
aoqi@0 114 echo "Warning: The generated configure file contains changes not present in the custom generated file."
aoqi@0 115 run_autogen_or_fail
aoqi@0 116 fi
aoqi@0 117 fi
aoqi@0 118
aoqi@0 119 # Autoconf calls the configure script recursively sometimes.
aoqi@0 120 # Don't start logging twice in that case
aoqi@0 121 if test "x$conf_debug_configure" = xtrue; then
aoqi@0 122 conf_debug_configure=recursive
aoqi@0 123 fi
kevinw@2211 124
aoqi@0 125 ###
aoqi@0 126 ### Process command-line arguments
aoqi@0 127 ###
kevinw@2211 128
kevinw@2211 129 # Returns a shell-escaped version of the argument given.
kevinw@2211 130 function shell_quote() {
kevinw@2211 131 if [[ -n "$1" ]]; then
kevinw@2211 132 # Uses only shell-safe characters? No quoting needed.
kevinw@2211 133 # '=' is a zsh meta-character, but only in word-initial position.
kevinw@2211 134 if [[ "$1" =~ ^[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.:,%/+=_-]+$ && ! "$1" =~ ^= ]]; then
kevinw@2211 135 quoted="$1"
kevinw@2211 136 else
kevinw@2211 137 if [[ "$1" =~ [\'!] ]]; then
kevinw@2211 138 # csh does history expansion within single quotes, but not
kevinw@2211 139 # when backslash-escaped!
kevinw@2211 140 local quoted_quote="'\\''" quoted_exclam="'\\!'"
kevinw@2211 141 word="${1//\'/${quoted_quote}}"
kevinw@2211 142 word="${1//\!/${quoted_exclam}}"
kevinw@2211 143 fi
kevinw@2211 144 quoted="'$1'"
kevinw@2211 145 fi
kevinw@2211 146 echo "$quoted"
kevinw@2211 147 fi
kevinw@2211 148 }
kevinw@2211 149
aoqi@0 150 conf_processed_arguments=()
kevinw@2211 151 conf_quoted_arguments=()
aoqi@0 152 conf_openjdk_target=
aoqi@0 153
aoqi@0 154 for conf_option
aoqi@0 155 do
kevinw@2211 156
kevinw@2211 157 # Process (and remove) our own extensions that will not be passed to autoconf
aoqi@0 158 case $conf_option in
aoqi@0 159 --openjdk-target=*)
aoqi@0 160 conf_openjdk_target=`expr "X$conf_option" : '[^=]*=\(.*\)'`
kevinw@2204 161 ;;
aoqi@0 162 --debug-configure)
aoqi@0 163 if test "x$conf_debug_configure" != xrecursive; then
aoqi@0 164 conf_debug_configure=true
aoqi@0 165 export conf_debug_configure
aoqi@0 166 fi
kevinw@2204 167 ;;
aoqi@0 168 *)
kevinw@2204 169 conf_processed_arguments=("${conf_processed_arguments[@]}" "$conf_option")
kevinw@2204 170 ;;
aoqi@0 171 esac
aoqi@0 172
kevinw@2211 173 # Store all variables overridden on the command line
kevinw@2211 174 case $conf_option in
kevinw@2211 175 [^-]*=*)
kevinw@2211 176 # Add name of variable to CONFIGURE_OVERRIDDEN_VARIABLES list inside !...!.
kevinw@2211 177 conf_env_var=`expr "x$conf_option" : 'x\([^=]*\)='`
kevinw@2211 178 CONFIGURE_OVERRIDDEN_VARIABLES="$CONFIGURE_OVERRIDDEN_VARIABLES!$conf_env_var!"
kevinw@2211 179 ;;
kevinw@2211 180 esac
kevinw@2211 181
kevinw@2211 182 # Save the arguments, intelligently quoted for CONFIGURE_COMMAND_LINE.
kevinw@2211 183 case $conf_option in
kevinw@2211 184 *=*)
kevinw@2211 185 conf_option_name=`expr "x$conf_option" : 'x\([^=]*\)='`
kevinw@2211 186 conf_option_name=$(shell_quote "$conf_option_name")
kevinw@2211 187 conf_option_value=`expr "x$conf_option" : 'x[^=]*=\(.*\)'`
kevinw@2211 188 conf_option_value=$(shell_quote "$conf_option_value")
kevinw@2211 189 conf_quoted_arguments=("${conf_quoted_arguments[@]}" "$conf_option_name=$conf_option_value")
kevinw@2211 190 ;;
kevinw@2211 191 *)
kevinw@2211 192 conf_quoted_arguments=("${conf_quoted_arguments[@]}" "$(shell_quote "$conf_option")")
kevinw@2211 193 ;;
kevinw@2211 194 esac
kevinw@2211 195
kevinw@2211 196 # Check for certain autoconf options that require extra action
aoqi@0 197 case $conf_option in
aoqi@0 198 -build | --build | --buil | --bui | --bu |-build=* | --build=* | --buil=* | --bui=* | --bu=*)
aoqi@0 199 conf_legacy_crosscompile="$conf_legacy_crosscompile $conf_option" ;;
aoqi@0 200 -target | --target | --targe | --targ | --tar | --ta | --t | -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
aoqi@0 201 conf_legacy_crosscompile="$conf_legacy_crosscompile $conf_option" ;;
aoqi@0 202 -host | --host | --hos | --ho | -host=* | --host=* | --hos=* | --ho=*)
aoqi@0 203 conf_legacy_crosscompile="$conf_legacy_crosscompile $conf_option" ;;
aoqi@0 204 -help | --help | --hel | --he | -h)
aoqi@0 205 conf_print_help=true ;;
aoqi@0 206 esac
aoqi@0 207 done
aoqi@0 208
kevinw@2211 209 # Save the quoted command line
kevinw@2211 210 CONFIGURE_COMMAND_LINE="${conf_quoted_arguments[@]}"
kevinw@2211 211
aoqi@0 212 if test "x$conf_legacy_crosscompile" != "x"; then
aoqi@0 213 if test "x$conf_openjdk_target" != "x"; then
aoqi@0 214 echo "Error: Specifying --openjdk-target together with autoconf"
aoqi@0 215 echo "legacy cross-compilation flags is not supported."
aoqi@0 216 echo "You specified: --openjdk-target=$conf_openjdk_target and $conf_legacy_crosscompile."
aoqi@0 217 echo "The recommended use is just --openjdk-target."
aoqi@0 218 exit 1
aoqi@0 219 else
aoqi@0 220 echo "Warning: You are using legacy autoconf cross-compilation flags."
aoqi@0 221 echo "It is recommended that you use --openjdk-target instead."
aoqi@0 222 echo ""
aoqi@0 223 fi
aoqi@0 224 fi
aoqi@0 225
aoqi@0 226 if test "x$conf_openjdk_target" != "x"; then
aoqi@0 227 conf_build_platform=`sh $conf_script_dir/build-aux/config.guess`
aoqi@0 228 conf_processed_arguments=("--build=$conf_build_platform" "--host=$conf_openjdk_target" "--target=$conf_openjdk_target" "${conf_processed_arguments[@]}")
aoqi@0 229 fi
aoqi@0 230
aoqi@0 231 # Make configure exit with error on invalid options as default.
aoqi@0 232 # Can be overridden by --disable-option-checking, since we prepend our argument
aoqi@0 233 # and later options override earlier.
aoqi@0 234 conf_processed_arguments=("--enable-option-checking=fatal" "${conf_processed_arguments[@]}")
aoqi@0 235
aoqi@0 236 ###
aoqi@0 237 ### Call the configure script
aoqi@0 238 ###
aoqi@0 239 if test -e $conf_custom_script_dir/generated-configure.sh; then
aoqi@0 240 # Custom source configure available; run that instead
kevinw@2212 241 echo "Running custom generated-configure.sh"
aoqi@0 242 conf_script_to_run=$conf_custom_script_dir/generated-configure.sh
aoqi@0 243 else
kevinw@2212 244 echo "Running generated-configure.sh"
aoqi@0 245 conf_script_to_run=$conf_script_dir/generated-configure.sh
aoqi@0 246 fi
aoqi@0 247
aoqi@0 248 if test "x$conf_debug_configure" != x; then
aoqi@0 249 # Turn on shell debug output if requested (initial or recursive)
aoqi@0 250 set -x
aoqi@0 251 fi
aoqi@0 252
aoqi@0 253 if test "x$conf_debug_configure" = xtrue; then
aoqi@0 254 # Turn on logging, but don't turn on twice when called recursive
aoqi@0 255 conf_debug_logfile=./debug-configure.log
aoqi@0 256 (exec 3>&1 ; (. $conf_script_to_run "${conf_processed_arguments[@]}" 2>&1 1>&3 ) | tee -a $conf_debug_logfile 1>&2 ; exec 3>&-) | tee -a $conf_debug_logfile
aoqi@0 257 else
aoqi@0 258 ( . $conf_script_to_run "${conf_processed_arguments[@]}" )
aoqi@0 259 fi
aoqi@0 260
aoqi@0 261 conf_result_code=$?
aoqi@0 262 ###
aoqi@0 263 ### Post-processing
aoqi@0 264 ###
aoqi@0 265
aoqi@0 266 if test $conf_result_code -eq 0; then
aoqi@0 267 if test "x$conf_print_help" = xtrue; then
aoqi@0 268 cat <<EOT
aoqi@0 269
aoqi@0 270 Additional (non-autoconf) OpenJDK Options:
aoqi@0 271 --openjdk-target=TARGET cross-compile with TARGET as target platform
aoqi@0 272 (i.e. the one you will run the resulting binary on).
aoqi@0 273 Equivalent to --host=TARGET --target=TARGET
aoqi@0 274 --build=<current platform>
aoqi@0 275 --debug-configure Run the configure script with additional debug
aoqi@0 276 logging enabled.
aoqi@0 277
kevinw@2206 278 EOT
kevinw@2206 279
kevinw@2206 280 # Print list of toolchains. This must be done by the autoconf script.
kevinw@2206 281 ( CONFIGURE_PRINT_TOOLCHAIN_LIST=true . $conf_script_to_run PRINTF=printf )
kevinw@2206 282
kevinw@2206 283 cat <<EOT
kevinw@2206 284
aoqi@0 285 Please be aware that, when cross-compiling, the OpenJDK configure script will
aoqi@0 286 generally use 'target' where autoconf traditionally uses 'host'.
kevinw@2204 287
kevinw@2204 288 Also note that variables must be passed on the command line. Variables in the
kevinw@2204 289 environment will generally be ignored, unlike traditional autoconf scripts.
aoqi@0 290 EOT
aoqi@0 291 fi
aoqi@0 292 else
aoqi@0 293 echo configure exiting with result code $conf_result_code
aoqi@0 294 fi
aoqi@0 295
aoqi@0 296 exit $conf_result_code

mercurial