make/autoconf/basics.m4
author ihse
Thu, 17 Oct 2019 14:20:26 +0200
changeset 58669 931ec3339786
parent 58549 9d9317fad3fe
child 58679 9c3209ff7550
child 59120 fc68b2cdfeeb
permissions -rw-r--r--
8213239: Configure cannot handle command overrides with arguments Reviewed-by: erikj
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     1
#
53729
9e1c9dc23c99 8218413: make reconfigure ignores configure-time AUTOCONF environment variable
ihse
parents: 53240
diff changeset
     2
# Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     4
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    10
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    15
# accompanied this code).
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    16
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    20
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    23
# questions.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    24
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    25
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
    26
###############################################################################
34923
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    27
# Create a function/macro that takes a series of named arguments. The call is
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    28
# similar to AC_DEFUN, but the setup of the function looks like this:
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    29
# BASIC_DEFUN_NAMED([MYFUNC], [FOO *BAR], [$@], [
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    30
# ... do something
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    31
#   AC_MSG_NOTICE([Value of BAR is ARG_BAR])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    32
# ])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    33
# A star (*) in front of a named argument means that it is required and it's
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    34
# presence will be verified. To pass e.g. the first value as a normal indexed
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    35
# argument, use [m4_shift($@)] as the third argument instead of [$@]. These
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    36
# arguments are referenced in the function by their name prefixed by ARG_, e.g.
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    37
# "ARG_FOO".
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    38
#
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    39
# The generated function can be called like this:
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35444
diff changeset
    40
# MYFUNC(FOO: [foo-val],
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35444
diff changeset
    41
#     BAR: [
34923
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    42
#         $ECHO hello world
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    43
#     ])
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35444
diff changeset
    44
# Note that the argument value must start on the same line as the argument name.
34923
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    45
#
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    46
# Argument 1: Name of the function to define
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    47
# Argument 2: List of legal named arguments, with a * prefix for required arguments
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    48
# Argument 3: Argument array to treat as named, typically $@
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    49
# Argument 4: The main function body
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    50
AC_DEFUN([BASIC_DEFUN_NAMED],
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    51
[
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    52
  AC_DEFUN($1, [
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    53
    m4_foreach(arg, m4_split($2), [
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    54
      m4_if(m4_bregexp(arg, [^\*]), -1,
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    55
        [
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    56
          m4_set_add(legal_named_args, arg)
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    57
        ],
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    58
        [
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    59
          m4_set_add(legal_named_args, m4_substr(arg, 1))
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    60
          m4_set_add(required_named_args, m4_substr(arg, 1))
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    61
        ]
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    62
      )
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    63
    ])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    64
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    65
    m4_foreach([arg], [$3], [
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    66
      m4_define(arg_name, m4_substr(arg, 0, m4_bregexp(arg, [: ])))
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    67
      m4_set_contains(legal_named_args, arg_name, [],[AC_MSG_ERROR([Internal error: arg_name is not a valid named argument to [$1]. Valid arguments are 'm4_set_contents(legal_named_args, [ ])'.])])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    68
      m4_set_remove(required_named_args, arg_name)
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    69
      m4_set_remove(legal_named_args, arg_name)
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    70
      m4_pushdef([ARG_][]arg_name, m4_substr(arg, m4_incr(m4_incr(m4_bregexp(arg, [: ])))))
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    71
      m4_set_add(defined_args, arg_name)
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    72
      m4_undefine([arg_name])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    73
    ])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    74
    m4_set_empty(required_named_args, [], [
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    75
      AC_MSG_ERROR([Internal error: Required named arguments are missing for [$1]. Missing arguments: 'm4_set_contents(required_named_args, [ ])'])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    76
    ])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    77
    m4_foreach([arg], m4_indir([m4_dquote]m4_set_listc([legal_named_args])), [
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    78
      m4_pushdef([ARG_][]arg, [])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    79
      m4_set_add(defined_args, arg)
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    80
    ])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    81
    m4_set_delete(legal_named_args)
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    82
    m4_set_delete(required_named_args)
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    83
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    84
    # Execute function body
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    85
    $4
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    86
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    87
    m4_foreach([arg], m4_indir([m4_dquote]m4_set_listc([defined_args])), [
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    88
      m4_popdef([ARG_][]arg)
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    89
    ])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    90
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    91
    m4_set_delete(defined_args)
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    92
  ])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    93
])
0a2be16ce53d 8146995: Introduce named arguments in configure
ihse
parents: 34493
diff changeset
    94
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
    95
###############################################################################
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
    96
# Check if a list of space-separated words are selected only from a list of
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
    97
# space-separated legal words. Typical use is to see if a user-specified
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
    98
# set of words is selected from a set of legal words.
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
    99
#
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   100
# Sets the specified variable to list of non-matching (offending) words, or to
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   101
# the empty string if all words are matching the legal set.
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   102
#
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   103
# $1: result variable name
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   104
# $2: list of values to check
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   105
# $3: list of legal values
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   106
AC_DEFUN([BASIC_GET_NON_MATCHING_VALUES],
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   107
[
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   108
  # grep filter function inspired by a comment to http://stackoverflow.com/a/1617326
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   109
  # Notice that the original variant fails on SLES 10 and 11
49587
1a87516db0b7 8201508: Macosx builds fail in GenerateLinkOptData.gmk
erikj
parents: 49582
diff changeset
   110
  # Some grep versions (at least bsd) behaves strangely on the base case with
1a87516db0b7 8201508: Macosx builds fail in GenerateLinkOptData.gmk
erikj
parents: 49582
diff changeset
   111
  # no legal_values, so make it explicit.
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   112
  values_to_check=`$ECHO $2 | $TR ' ' '\n'`
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   113
  legal_values=`$ECHO $3 | $TR ' ' '\n'`
49587
1a87516db0b7 8201508: Macosx builds fail in GenerateLinkOptData.gmk
erikj
parents: 49582
diff changeset
   114
  if test -z "$legal_values"; then
1a87516db0b7 8201508: Macosx builds fail in GenerateLinkOptData.gmk
erikj
parents: 49582
diff changeset
   115
    $1="$2"
1a87516db0b7 8201508: Macosx builds fail in GenerateLinkOptData.gmk
erikj
parents: 49582
diff changeset
   116
  else
1a87516db0b7 8201508: Macosx builds fail in GenerateLinkOptData.gmk
erikj
parents: 49582
diff changeset
   117
    result=`$GREP -Fvx "$legal_values" <<< "$values_to_check" | $GREP -v '^$'`
1a87516db0b7 8201508: Macosx builds fail in GenerateLinkOptData.gmk
erikj
parents: 49582
diff changeset
   118
    $1=${result//$'\n'/ }
1a87516db0b7 8201508: Macosx builds fail in GenerateLinkOptData.gmk
erikj
parents: 49582
diff changeset
   119
  fi
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   120
])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   121
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   122
###############################################################################
50266
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   123
# Check if a list of space-separated words contains any word(s) from a list of
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   124
# space-separated illegal words. Typical use is to see if a user-specified
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   125
# set of words contains any from a set of illegal words.
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   126
#
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   127
# Sets the specified variable to list of matching illegal words, or to
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   128
# the empty string if no words are matching the illegal set.
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   129
#
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   130
# $1: result variable name
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   131
# $2: list of values to check
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   132
# $3: list of illegal values
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   133
AC_DEFUN([BASIC_GET_MATCHING_VALUES],
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   134
[
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   135
  # grep filter function inspired by a comment to http://stackoverflow.com/a/1617326
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   136
  # Notice that the original variant fails on SLES 10 and 11
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   137
  # Some grep versions (at least bsd) behaves strangely on the base case with
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   138
  # no legal_values, so make it explicit.
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   139
  values_to_check=`$ECHO $2 | $TR ' ' '\n'`
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   140
  illegal_values=`$ECHO $3 | $TR ' ' '\n'`
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   141
  if test -z "$illegal_values"; then
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   142
    $1=""
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   143
  else
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   144
    result=`$GREP -Fx "$illegal_values" <<< "$values_to_check" | $GREP -v '^$'`
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   145
    $1=${result//$'\n'/ }
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   146
  fi
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   147
])
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   148
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50073
diff changeset
   149
###############################################################################
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   150
# Sort a space-separated list, and remove duplicates.
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   151
#
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   152
# Sets the specified variable to the resulting list.
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   153
#
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   154
# $1: result variable name
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   155
# $2: list of values to sort
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   156
AC_DEFUN([BASIC_SORT_LIST],
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   157
[
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   158
  values_to_sort=`$ECHO $2 | $TR ' ' '\n'`
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   159
  result=`$SORT -u <<< "$values_to_sort" | $GREP -v '^$'`
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   160
  $1=${result//$'\n'/ }
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   161
])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   162
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   163
###############################################################################
17592
06b7538d17ef 8014514: Fix jvm args for sjavac
erikj
parents: 16580
diff changeset
   164
# Test if $1 is a valid argument to $3 (often is $JAVA passed as $3)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   165
# If so, then append $1 to $2 \
17592
06b7538d17ef 8014514: Fix jvm args for sjavac
erikj
parents: 16580
diff changeset
   166
# Also set JVM_ARG_OK to true/false depending on outcome.
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   167
AC_DEFUN([ADD_JVM_ARG_IF_OK],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   168
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   169
  $ECHO "Check if jvm arg is ok: $1" >&AS_MESSAGE_LOG_FD
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   170
  $ECHO "Command: $3 $1 -version" >&AS_MESSAGE_LOG_FD
51822
f3c1945fa8aa 8210960: Allow --with-boot-jdk-jvmargs to work during configure
ihse
parents: 51676
diff changeset
   171
  OUTPUT=`$3 $1 $USER_BOOT_JDK_OPTIONS -version 2>&1`
38843
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
   172
  FOUND_WARN=`$ECHO "$OUTPUT" | $GREP -i warn`
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
   173
  FOUND_VERSION=`$ECHO $OUTPUT | $GREP " version \""`
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   174
  if test "x$FOUND_VERSION" != x && test "x$FOUND_WARN" = x; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   175
    $2="[$]$2 $1"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   176
    JVM_ARG_OK=true
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   177
  else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   178
    $ECHO "Arg failed:" >&AS_MESSAGE_LOG_FD
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   179
    $ECHO "$OUTPUT" >&AS_MESSAGE_LOG_FD
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   180
    JVM_ARG_OK=false
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   181
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   182
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   183
18421
0296625b6c1f 8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents: 18021
diff changeset
   184
# Appends a string to a path variable, only adding the : when needed.
0296625b6c1f 8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents: 18021
diff changeset
   185
AC_DEFUN([BASIC_APPEND_TO_PATH],
0296625b6c1f 8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents: 18021
diff changeset
   186
[
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   187
  if test "x$2" != x; then
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   188
    if test "x[$]$1" = x; then
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   189
      $1="$2"
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   190
    else
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   191
      $1="[$]$1:$2"
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   192
    fi
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   193
  fi
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   194
])
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   195
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   196
# Prepends a string to a path variable, only adding the : when needed.
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   197
AC_DEFUN([BASIC_PREPEND_TO_PATH],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   198
[
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   199
  if test "x$2" != x; then
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   200
    if test "x[$]$1" = x; then
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   201
      $1="$2"
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   202
    else
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   203
      $1="$2:[$]$1"
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   204
    fi
18421
0296625b6c1f 8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents: 18021
diff changeset
   205
  fi
0296625b6c1f 8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents: 18021
diff changeset
   206
])
0296625b6c1f 8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents: 18021
diff changeset
   207
58270
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   208
################################################################################
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   209
# This will make a path absolute. Assumes it's already a unix path. Also
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   210
# resolves ~ to homedir.
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   211
AC_DEFUN([BASIC_ABSOLUTE_PATH],
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   212
[
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   213
  if test "x[$]$1" != x; then
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   214
    new_path="[$]$1"
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   215
58431
c8b0dcab20d7 8231594: Configure fails on some Linux systems
erikj
parents: 58270
diff changeset
   216
    # Use eval to expand a potential ~. This technique does not work if there
c8b0dcab20d7 8231594: Configure fails on some Linux systems
erikj
parents: 58270
diff changeset
   217
    # are spaces in the path (which is valid at this point on Windows), so only
c8b0dcab20d7 8231594: Configure fails on some Linux systems
erikj
parents: 58270
diff changeset
   218
    # try to apply it if there is an actual ~ first in the path.
c8b0dcab20d7 8231594: Configure fails on some Linux systems
erikj
parents: 58270
diff changeset
   219
    if [ [[ "$new_path" = "~"* ]] ]; then
58270
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   220
      eval new_path="$new_path"
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   221
      if test ! -f "$new_path" && test ! -d "$new_path"; then
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   222
        AC_MSG_ERROR([The new_path of $1, which resolves as "$new_path", is not found.])
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   223
      fi
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   224
    fi
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   225
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   226
    if test -d "$new_path"; then
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   227
      $1="`cd "$new_path"; $THEPWDCMD -L`"
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   228
    else
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   229
      dir="`$DIRNAME "$new_path"`"
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   230
      base="`$BASENAME "$new_path"`"
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   231
      $1="`cd "$dir"; $THEPWDCMD -L`/$base"
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   232
    fi
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   233
  fi
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   234
])
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   235
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   236
###############################################################################
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   237
# This will make sure the given variable points to a full and proper
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   238
# path. This means:
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 27329
diff changeset
   239
# 1) There will be no spaces in the path. On unix platforms,
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   240
#    spaces in the path will result in an error. On Windows,
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   241
#    the path will be rewritten using short-style to be space-free.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   242
# 2) The path will be absolute, and it will be in unix-style (on
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   243
#     cygwin).
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   244
# $1: The name of the variable to fix
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   245
AC_DEFUN([BASIC_FIXUP_PATH],
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   246
[
29064
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   247
  # Only process if variable expands to non-empty
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   248
  if test "x[$]$1" != x; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   249
    if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   250
      BASIC_FIXUP_PATH_CYGWIN($1)
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   251
    elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   252
      BASIC_FIXUP_PATH_MSYS($1)
53110
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   253
    elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.wsl"; then
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   254
      BASIC_FIXUP_PATH_WSL($1)
29064
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   255
    else
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   256
      # We're on a unix platform. Hooray! :)
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   257
      path="[$]$1"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   258
      has_space=`$ECHO "$path" | $GREP " "`
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   259
      if test "x$has_space" != x; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   260
        AC_MSG_NOTICE([The path of $1, which resolves as "$path", is invalid.])
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   261
        AC_MSG_ERROR([Spaces are not allowed in this path.])
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   262
      fi
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   263
58270
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   264
      BASIC_ABSOLUTE_PATH(path)
2921ee5e9881 8206125: [windows] cannot pass relative path to --with-boot-jdk
erikj
parents: 58000
diff changeset
   265
      $1="$path"
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   266
    fi
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   267
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   268
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   269
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   270
###############################################################################
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   271
# This will make sure the given variable points to a executable
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   272
# with a full and proper path. This means:
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 27329
diff changeset
   273
# 1) There will be no spaces in the path. On unix platforms,
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   274
#    spaces in the path will result in an error. On Windows,
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   275
#    the path will be rewritten using short-style to be space-free.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   276
# 2) The path will be absolute, and it will be in unix-style (on
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   277
#     cygwin).
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   278
# Any arguments given to the executable is preserved.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   279
# If the input variable does not have a directory specification, then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   280
# it need to be in the PATH.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   281
# $1: The name of the variable to fix
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   282
AC_DEFUN([BASIC_FIXUP_EXECUTABLE],
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   283
[
29064
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   284
  # Only process if variable expands to non-empty
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29064
diff changeset
   285
29064
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   286
  if test "x[$]$1" != x; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   287
    if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   288
      BASIC_FIXUP_EXECUTABLE_CYGWIN($1)
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   289
    elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   290
      BASIC_FIXUP_EXECUTABLE_MSYS($1)
53110
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   291
    elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.wsl"; then
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   292
      BASIC_FIXUP_EXECUTABLE_WSL($1)
29064
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   293
    else
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   294
      # We're on a unix platform. Hooray! :)
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   295
      # First separate the path from the arguments. This will split at the first
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   296
      # space.
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   297
      complete="[$]$1"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   298
      path="${complete%% *}"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   299
      tmp="$complete EOL"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   300
      arguments="${tmp#* }"
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   301
29064
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   302
      # Cannot rely on the command "which" here since it doesn't always work.
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   303
      is_absolute_path=`$ECHO "$path" | $GREP ^/`
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   304
      if test -z "$is_absolute_path"; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   305
        # Path to executable is not absolute. Find it.
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   306
        IFS_save="$IFS"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   307
        IFS=:
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   308
        for p in $PATH; do
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   309
          if test -f "$p/$path" && test -x "$p/$path"; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   310
            new_path="$p/$path"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   311
            break
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   312
          fi
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   313
        done
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   314
        IFS="$IFS_save"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   315
      else
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   316
        # This is an absolute path, we can use it without further modifications.
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   317
        new_path="$path"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   318
      fi
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   319
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   320
      if test "x$new_path" = x; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   321
        AC_MSG_NOTICE([The path of $1, which resolves as "$complete", is not found.])
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   322
        has_space=`$ECHO "$complete" | $GREP " "`
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   323
        if test "x$has_space" != x; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   324
          AC_MSG_NOTICE([This might be caused by spaces in the path, which is not allowed.])
14736
ee810661e3d1 8001901: build-infra: Fix "misbehaving" which command on Solaris
erikj
parents: 14563
diff changeset
   325
        fi
29064
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   326
        AC_MSG_ERROR([Cannot locate the the path of $1])
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   327
      fi
14736
ee810661e3d1 8001901: build-infra: Fix "misbehaving" which command on Solaris
erikj
parents: 14563
diff changeset
   328
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   329
29064
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   330
    # Now join together the path and the arguments once again
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   331
    if test "x$arguments" != xEOL; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   332
      new_complete="$new_path ${arguments% *}"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   333
    else
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   334
      new_complete="$new_path"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   335
    fi
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   336
29064
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   337
    if test "x$complete" != "x$new_complete"; then
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   338
      $1="$new_complete"
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   339
      AC_MSG_NOTICE([Rewriting $1 to "$new_complete"])
d5e775680e97 8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents: 28908
diff changeset
   340
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   341
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   342
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   343
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   344
###############################################################################
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   345
AC_DEFUN([BASIC_REMOVE_SYMBOLIC_LINKS],
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   346
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   347
  if test "x$OPENJDK_BUILD_OS" != xwindows; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   348
    # Follow a chain of symbolic links. Use readlink
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   349
    # where it exists, else fall back to horribly
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   350
    # complicated shell code.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   351
    if test "x$READLINK_TESTED" != yes; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   352
      # On MacOSX there is a readlink tool with a different
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   353
      # purpose than the GNU readlink tool. Check the found readlink.
48912
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48846
diff changeset
   354
      READLINK_ISGNU=`$READLINK --version 2>&1 | $GREP GNU`
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48846
diff changeset
   355
      # If READLINK_ISGNU is empty, then it's a non-GNU readlink. Don't use it.
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48846
diff changeset
   356
      READLINK_TESTED=yes
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   357
    fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   358
48946
129aeb5026c3 8198627: JDK-8198318 broke readlink testing
ihse
parents: 48912
diff changeset
   359
    if test "x$READLINK" != x && test "x$READLINK_ISGNU" != x; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   360
      $1=`$READLINK -f [$]$1`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   361
    else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   362
      # Save the current directory for restoring afterwards
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   363
      STARTDIR=$PWD
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   364
      COUNTER=0
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   365
      sym_link_dir=`$DIRNAME [$]$1`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   366
      sym_link_file=`$BASENAME [$]$1`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   367
      cd $sym_link_dir
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   368
      # Use -P flag to resolve symlinks in directories.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   369
      cd `$THEPWDCMD -P`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   370
      sym_link_dir=`$THEPWDCMD -P`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   371
      # Resolve file symlinks
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   372
      while test $COUNTER -lt 20; do
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   373
        ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   374
        if test "x$ISLINK" == x; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   375
          # This is not a symbolic link! We are done!
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   376
          break
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   377
        fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   378
        # Again resolve directory symlinks since the target of the just found
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   379
        # link could be in a different directory
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   380
        cd `$DIRNAME $ISLINK`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   381
        sym_link_dir=`$THEPWDCMD -P`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   382
        sym_link_file=`$BASENAME $ISLINK`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   383
        let COUNTER=COUNTER+1
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   384
      done
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   385
      cd $STARTDIR
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   386
      $1=$sym_link_dir/$sym_link_file
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   387
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   388
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   389
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   390
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   391
###############################################################################
19763
f234bbfc5ab3 8024815: Make --with-dxsdk and friends deprecated
ihse
parents: 18427
diff changeset
   392
# Register a --with argument but mark it as deprecated
f234bbfc5ab3 8024815: Make --with-dxsdk and friends deprecated
ihse
parents: 18427
diff changeset
   393
# $1: The name of the with argument to deprecate, not including --with-
f234bbfc5ab3 8024815: Make --with-dxsdk and friends deprecated
ihse
parents: 18427
diff changeset
   394
AC_DEFUN([BASIC_DEPRECATED_ARG_WITH],
f234bbfc5ab3 8024815: Make --with-dxsdk and friends deprecated
ihse
parents: 18427
diff changeset
   395
[
f234bbfc5ab3 8024815: Make --with-dxsdk and friends deprecated
ihse
parents: 18427
diff changeset
   396
  AC_ARG_WITH($1, [AS_HELP_STRING([--with-$1],
f234bbfc5ab3 8024815: Make --with-dxsdk and friends deprecated
ihse
parents: 18427
diff changeset
   397
      [Deprecated. Option is kept for backwards compatibility and is ignored])],
f234bbfc5ab3 8024815: Make --with-dxsdk and friends deprecated
ihse
parents: 18427
diff changeset
   398
      [AC_MSG_WARN([Option --with-$1 is deprecated and will be ignored.])])
f234bbfc5ab3 8024815: Make --with-dxsdk and friends deprecated
ihse
parents: 18427
diff changeset
   399
])
f234bbfc5ab3 8024815: Make --with-dxsdk and friends deprecated
ihse
parents: 18427
diff changeset
   400
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   401
###############################################################################
20649
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   402
# Register a --enable argument but mark it as deprecated
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   403
# $1: The name of the with argument to deprecate, not including --enable-
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   404
# $2: The name of the argument to deprecate, in shell variable style (i.e. with _ instead of -)
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 34491
diff changeset
   405
# $3: Messages to user.
20649
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   406
AC_DEFUN([BASIC_DEPRECATED_ARG_ENABLE],
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   407
[
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   408
  AC_ARG_ENABLE($1, [AS_HELP_STRING([--enable-$1],
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   409
      [Deprecated. Option is kept for backwards compatibility and is ignored])])
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   410
  if test "x$enable_$2" != x; then
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   411
    AC_MSG_WARN([Option --enable-$1 is deprecated and will be ignored.])
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 34491
diff changeset
   412
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 34491
diff changeset
   413
    if test "x$3" != x; then
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 34491
diff changeset
   414
      AC_MSG_WARN([$3])
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 34491
diff changeset
   415
    fi
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 34491
diff changeset
   416
20649
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   417
  fi
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   418
])
47ddc69a25a7 8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents: 20647
diff changeset
   419
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   420
###############################################################################
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   421
AC_DEFUN_ONCE([BASIC_INIT],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   422
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   423
  # Save the original command line. This is passed to us by the wrapper configure script.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   424
  AC_SUBST(CONFIGURE_COMMAND_LINE)
53729
9e1c9dc23c99 8218413: make reconfigure ignores configure-time AUTOCONF environment variable
ihse
parents: 53240
diff changeset
   425
  # AUTOCONF might be set in the environment by the user. Preserve for "make reconfigure".
9e1c9dc23c99 8218413: make reconfigure ignores configure-time AUTOCONF environment variable
ihse
parents: 53240
diff changeset
   426
  AC_SUBST(AUTOCONF)
28809
6481e27e00ee 8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents: 28602
diff changeset
   427
  # Save the path variable before it gets changed
6481e27e00ee 8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents: 28602
diff changeset
   428
  ORIGINAL_PATH="$PATH"
6481e27e00ee 8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents: 28602
diff changeset
   429
  AC_SUBST(ORIGINAL_PATH)
58549
9d9317fad3fe 8065704: Set LC_ALL=C for all relevant commands in the build system
ihse
parents: 58431
diff changeset
   430
  DATE_WHEN_CONFIGURED=`date`
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   431
  AC_SUBST(DATE_WHEN_CONFIGURED)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   432
  AC_MSG_NOTICE([Configuration created at $DATE_WHEN_CONFIGURED.])
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   433
])
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   434
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   435
###############################################################################
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   436
# Test that variable $1 denoting a program is not empty. If empty, exit with an error.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   437
# $1: variable to check
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   438
AC_DEFUN([BASIC_CHECK_NONEMPTY],
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   439
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   440
  if test "x[$]$1" = x; then
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   441
    AC_MSG_ERROR([Could not find required tool for $1])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   442
  fi
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   443
])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   444
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   445
###############################################################################
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   446
# Check that there are no unprocessed overridden variables left.
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   447
# If so, they are an incorrect argument and we will exit with an error.
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   448
AC_DEFUN([BASIC_CHECK_LEFTOVER_OVERRIDDEN],
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   449
[
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   450
  if test "x$CONFIGURE_OVERRIDDEN_VARIABLES" != x; then
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   451
    # Replace the separating ! with spaces before presenting for end user.
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   452
    unknown_variables=${CONFIGURE_OVERRIDDEN_VARIABLES//!/ }
22478
5ca2b792a5fd 8033292: only warn, not fail, on unknown variables in configure
ihse
parents: 22475
diff changeset
   453
    AC_MSG_WARN([The following variables might be unknown to configure: $unknown_variables])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   454
  fi
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   455
])
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   456
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   457
###############################################################################
27595
cff167b3bfa2 8065914: Various improvements and cleanup of build system
ihse
parents: 27586
diff changeset
   458
# Setup a tool for the given variable. If correctly specified by the user,
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   459
# use that value, otherwise search for the tool using the supplied code snippet.
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   460
# $1: variable to set
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   461
# $2: code snippet to call to look for the tool
33396
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
   462
# $3: code snippet to call if variable was used to find tool
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   463
AC_DEFUN([BASIC_SETUP_TOOL],
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   464
[
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   465
  # Publish this variable in the help.
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   466
  AC_ARG_VAR($1, [Override default value for $1])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   467
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   468
  if [[ -z "${$1+x}" ]]; then
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   469
    # The variable is not set by user, try to locate tool using the code snippet
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   470
    $2
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   471
  else
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   472
    # The variable is set, but is it from the command line or the environment?
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   473
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   474
    # Try to remove the string !$1! from our list.
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   475
    try_remove_var=${CONFIGURE_OVERRIDDEN_VARIABLES//!$1!/}
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   476
    if test "x$try_remove_var" = "x$CONFIGURE_OVERRIDDEN_VARIABLES"; then
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   477
      # If it failed, the variable was not from the command line. Ignore it,
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   478
      # but warn the user (except for BASH, which is always set by the calling BASH).
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   479
      if test "x$1" != xBASH; then
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   480
        AC_MSG_WARN([Ignoring value of $1 from the environment. Use command line variables instead.])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   481
      fi
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   482
      # Try to locate tool using the code snippet
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   483
      $2
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   484
    else
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   485
      # If it succeeded, then it was overridden by the user. We will use it
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   486
      # for the tool.
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   487
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   488
      # First remove it from the list of overridden variables, so we can test
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   489
      # for unknown variables in the end.
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   490
      CONFIGURE_OVERRIDDEN_VARIABLES="$try_remove_var"
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   491
58669
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   492
      tool_override=[$]$1
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   493
      AC_MSG_NOTICE([User supplied override $1="$tool_override"])
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   494
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   495
      # Check if we try to supply an empty value
58669
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   496
      if test "x$tool_override" = x; then
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   497
        AC_MSG_CHECKING([for $1])
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   498
        AC_MSG_RESULT([disabled])
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   499
      else
58669
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   500
        # Split up override in command part and argument part
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   501
        tool_and_args=($tool_override)
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   502
        [ tool_command=${tool_and_args[0]} ]
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   503
        [ unset 'tool_and_args[0]' ]
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   504
        [ tool_args=${tool_and_args[@]} ]
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   505
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   506
        # Check if the provided tool contains a complete path.
58669
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   507
        tool_basename="${tool_command##*/}"
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   508
        if test "x$tool_basename" = "x$tool_command"; then
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   509
          # A command without a complete path is provided, search $PATH.
58669
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   510
          AC_MSG_NOTICE([Will search for user supplied tool "$tool_basename"])
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   511
          AC_PATH_PROG($1, $tool_basename)
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   512
          if test "x[$]$1" = x; then
58669
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   513
            AC_MSG_ERROR([User supplied tool $1="$tool_basename" could not be found])
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   514
          fi
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   515
        else
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   516
          # Otherwise we believe it is a complete path. Use it as it is.
58669
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   517
          AC_MSG_NOTICE([Will use user supplied tool "$tool_command"])
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   518
          AC_MSG_CHECKING([for $tool_command])
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   519
          if test ! -x "$tool_command"; then
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   520
            AC_MSG_RESULT([not found])
58669
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   521
            AC_MSG_ERROR([User supplied tool $1="$tool_command" does not exist or is not executable])
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   522
          fi
58669
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   523
           $1="$tool_command"
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   524
          AC_MSG_RESULT([found])
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   525
        fi
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   526
        if test "x$tool_args" != x; then
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   527
          # If we got arguments, re-append them to the command after the fixup.
931ec3339786 8213239: Configure cannot handle command overrides with arguments
ihse
parents: 58549
diff changeset
   528
          $1="[$]$1 $tool_args"
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   529
        fi
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   530
      fi
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   531
    fi
33396
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
   532
    $3
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   533
  fi
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   534
])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   535
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   536
###############################################################################
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   537
# Call BASIC_SETUP_TOOL with AC_PATH_PROGS to locate the tool
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   538
# $1: variable to set
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   539
# $2: executable name (or list of names) to look for
41462
a4f7ec34a58f 8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents: 41040
diff changeset
   540
# $3: [path]
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   541
AC_DEFUN([BASIC_PATH_PROGS],
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   542
[
41462
a4f7ec34a58f 8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents: 41040
diff changeset
   543
  BASIC_SETUP_TOOL($1, [AC_PATH_PROGS($1, $2, , $3)])
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   544
])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   545
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   546
###############################################################################
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   547
# Call BASIC_SETUP_TOOL with AC_CHECK_TOOLS to locate the tool
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   548
# $1: variable to set
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   549
# $2: executable name (or list of names) to look for
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   550
AC_DEFUN([BASIC_CHECK_TOOLS],
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   551
[
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   552
  BASIC_SETUP_TOOL($1, [AC_CHECK_TOOLS($1, $2)])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   553
])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   554
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   555
###############################################################################
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   556
# Like BASIC_PATH_PROGS but fails if no tool was found.
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   557
# $1: variable to set
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   558
# $2: executable name (or list of names) to look for
41462
a4f7ec34a58f 8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents: 41040
diff changeset
   559
# $3: [path]
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   560
AC_DEFUN([BASIC_REQUIRE_PROGS],
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   561
[
41462
a4f7ec34a58f 8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents: 41040
diff changeset
   562
  BASIC_PATH_PROGS($1, $2, , $3)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   563
  BASIC_CHECK_NONEMPTY($1)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   564
])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   565
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   566
###############################################################################
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   567
# Like BASIC_SETUP_TOOL but fails if no tool was found.
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   568
# $1: variable to set
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   569
# $2: autoconf macro to call to look for the special tool
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   570
AC_DEFUN([BASIC_REQUIRE_SPECIAL],
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   571
[
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   572
  BASIC_SETUP_TOOL($1, [$2])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   573
  BASIC_CHECK_NONEMPTY($1)
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   574
])
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   575
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   576
###############################################################################
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   577
# Setup the most fundamental tools that relies on not much else to set up,
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   578
# but is used by much of the early bootstrap code.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   579
AC_DEFUN_ONCE([BASIC_SETUP_FUNDAMENTAL_TOOLS],
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   580
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   581
  # Start with tools that do not need have cross compilation support
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   582
  # and can be expected to be found in the default PATH. These tools are
32921
8e0250dfa145 8138761: Improved handling of libffi, and cleanup of libraries.m4
ihse
parents: 32920
diff changeset
   583
  # used by configure.
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   584
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   585
  # First are all the simple required tools.
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   586
  BASIC_REQUIRE_PROGS(BASENAME, basename)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   587
  BASIC_REQUIRE_PROGS(BASH, bash)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   588
  BASIC_REQUIRE_PROGS(CAT, cat)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   589
  BASIC_REQUIRE_PROGS(CHMOD, chmod)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   590
  BASIC_REQUIRE_PROGS(CMP, cmp)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   591
  BASIC_REQUIRE_PROGS(COMM, comm)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   592
  BASIC_REQUIRE_PROGS(CP, cp)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   593
  BASIC_REQUIRE_PROGS(CUT, cut)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   594
  BASIC_REQUIRE_PROGS(DATE, date)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   595
  BASIC_REQUIRE_PROGS(DIFF, [gdiff diff])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   596
  BASIC_REQUIRE_PROGS(DIRNAME, dirname)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   597
  BASIC_REQUIRE_PROGS(ECHO, echo)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   598
  BASIC_REQUIRE_PROGS(EXPR, expr)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   599
  BASIC_REQUIRE_PROGS(FILE, file)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   600
  BASIC_REQUIRE_PROGS(FIND, find)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   601
  BASIC_REQUIRE_PROGS(HEAD, head)
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
   602
  BASIC_REQUIRE_PROGS(GUNZIP, gunzip)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
   603
  BASIC_REQUIRE_PROGS(GZIP, pigz gzip)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   604
  BASIC_REQUIRE_PROGS(LN, ln)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   605
  BASIC_REQUIRE_PROGS(LS, ls)
52065
dea8a62cdfc3 8211724: Change mkdir -p to MakeDir macro where possible
erikj
parents: 51824
diff changeset
   606
  # gmkdir is known to be safe for concurrent invocations with -p flag.
dea8a62cdfc3 8211724: Change mkdir -p to MakeDir macro where possible
erikj
parents: 51824
diff changeset
   607
  BASIC_REQUIRE_PROGS(MKDIR, [gmkdir mkdir])
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   608
  BASIC_REQUIRE_PROGS(MKTEMP, mktemp)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   609
  BASIC_REQUIRE_PROGS(MV, mv)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   610
  BASIC_REQUIRE_PROGS(NAWK, [nawk gawk awk])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   611
  BASIC_REQUIRE_PROGS(PRINTF, printf)
48912
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48846
diff changeset
   612
  BASIC_REQUIRE_PROGS(READLINK, [greadlink readlink])
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   613
  BASIC_REQUIRE_PROGS(RM, rm)
33052
4da63d511320 8140282: Remove test directories on clean-test-*
ihse
parents: 32921
diff changeset
   614
  BASIC_REQUIRE_PROGS(RMDIR, rmdir)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   615
  BASIC_REQUIRE_PROGS(SH, sh)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   616
  BASIC_REQUIRE_PROGS(SORT, sort)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   617
  BASIC_REQUIRE_PROGS(TAIL, tail)
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
   618
  BASIC_REQUIRE_PROGS(TAR, gtar tar)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   619
  BASIC_REQUIRE_PROGS(TEE, tee)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   620
  BASIC_REQUIRE_PROGS(TOUCH, touch)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   621
  BASIC_REQUIRE_PROGS(TR, tr)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   622
  BASIC_REQUIRE_PROGS(UNAME, uname)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   623
  BASIC_REQUIRE_PROGS(UNIQ, uniq)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   624
  BASIC_REQUIRE_PROGS(WC, wc)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   625
  BASIC_REQUIRE_PROGS(WHICH, which)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   626
  BASIC_REQUIRE_PROGS(XARGS, xargs)
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   627
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   628
  # Then required tools that require some special treatment.
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   629
  BASIC_REQUIRE_SPECIAL(AWK, [AC_PROG_AWK])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   630
  BASIC_REQUIRE_SPECIAL(GREP, [AC_PROG_GREP])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   631
  BASIC_REQUIRE_SPECIAL(EGREP, [AC_PROG_EGREP])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   632
  BASIC_REQUIRE_SPECIAL(FGREP, [AC_PROG_FGREP])
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   633
  BASIC_REQUIRE_SPECIAL(SED, [AC_PROG_SED])
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   634
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   635
  # Always force rm.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   636
  RM="$RM -f"
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   637
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   638
  # pwd behaves differently on various platforms and some don't support the -L flag.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   639
  # Always use the bash builtin pwd to get uniform behavior.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   640
  THEPWDCMD=pwd
17662
8cae100e6f14 8014003: New build does not handle symlinks in workspace path
erikj
parents: 17661
diff changeset
   641
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   642
  # These are not required on all platforms
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   643
  BASIC_PATH_PROGS(CYGPATH, cygpath)
53110
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   644
  BASIC_PATH_PROGS(WSLPATH, wslpath)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
   645
  BASIC_PATH_PROGS(DF, df)
25882
bd4315f0084b 8022177: Windows/MSYS builds broken
erikj
parents: 25854
diff changeset
   646
  BASIC_PATH_PROGS(CPIO, [cpio bsdcpio])
32920
5bea8a04f0a5 8138864: Build with nice to lower UI impact
ihse
parents: 32716
diff changeset
   647
  BASIC_PATH_PROGS(NICE, nice)
53087
f48737b2f428 8215635: Pandoc check in Docs.gmk does not work on Windows
erikj
parents: 52065
diff changeset
   648
53110
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   649
  BASIC_PATH_PROGS(LSB_RELEASE, lsb_release)
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   650
  BASIC_PATH_PROGS(CMD, [cmd.exe /mnt/c/Windows/System32/cmd.exe])
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   651
])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   652
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   653
###############################################################################
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   654
# Setup basic configuration paths, and platform-specific stuff related to PATHs.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   655
AC_DEFUN_ONCE([BASIC_SETUP_PATHS],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   656
[
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
   657
  # Save the current directory this script was started from
54455
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   658
  CONFIGURE_START_DIR="$PWD"
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   659
32716
d3203fd9e447 8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents: 32715
diff changeset
   660
  # We might need to rewrite ORIGINAL_PATH, if it includes "#", to quote them
d3203fd9e447 8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents: 32715
diff changeset
   661
  # for make. We couldn't do this when we retrieved ORIGINAL_PATH, since SED
d3203fd9e447 8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents: 32715
diff changeset
   662
  # was not available at that time.
d3203fd9e447 8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents: 32715
diff changeset
   663
  REWRITTEN_PATH=`$ECHO "$ORIGINAL_PATH" | $SED -e 's/#/\\\\#/g'`
d3203fd9e447 8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents: 32715
diff changeset
   664
  if test "x$REWRITTEN_PATH" != "x$ORIGINAL_PATH"; then
d3203fd9e447 8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents: 32715
diff changeset
   665
    ORIGINAL_PATH="$REWRITTEN_PATH"
d3203fd9e447 8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents: 32715
diff changeset
   666
    AC_MSG_NOTICE([Rewriting ORIGINAL_PATH to $REWRITTEN_PATH])
d3203fd9e447 8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents: 32715
diff changeset
   667
  fi
d3203fd9e447 8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents: 32715
diff changeset
   668
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   669
  if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   670
    PATH_SEP=";"
53110
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   671
    EXE_SUFFIX=".exe"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   672
    BASIC_CHECK_PATHS_WINDOWS
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   673
  else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   674
    PATH_SEP=":"
53110
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   675
    EXE_SUFFIX=""
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   676
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   677
  AC_SUBST(PATH_SEP)
53110
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
   678
  AC_SUBST(EXE_SUFFIX)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   679
22726
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   680
  # We get the top-level directory from the supporting wrappers.
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   681
  AC_MSG_CHECKING([for top-level directory])
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   682
  AC_MSG_RESULT([$TOPDIR])
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   683
  AC_SUBST(TOPDIR)
54455
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   684
  AC_SUBST(CONFIGURE_START_DIR)
22726
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   685
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   686
  # We can only call BASIC_FIXUP_PATH after BASIC_CHECK_PATHS_WINDOWS.
54455
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   687
  BASIC_FIXUP_PATH(CONFIGURE_START_DIR)
22726
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   688
  BASIC_FIXUP_PATH(TOPDIR)
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   689
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   690
  # Locate the directory of this script.
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
   691
  AUTOCONF_DIR=$TOPDIR/make/autoconf
35444
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 34925
diff changeset
   692
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 34925
diff changeset
   693
  # Setup username (for use in adhoc version strings etc)
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 34925
diff changeset
   694
  # Outer [ ] to quote m4.
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 34925
diff changeset
   695
  [ USERNAME=`$ECHO "$USER" | $TR -d -c '[a-z][A-Z][0-9]'` ]
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 34925
diff changeset
   696
  AC_SUBST(USERNAME)
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   697
])
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   698
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   699
###############################################################################
30022
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   700
# Evaluates platform specific overrides for devkit variables.
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   701
# $1: Name of variable
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   702
AC_DEFUN([BASIC_EVAL_DEVKIT_VARIABLE],
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   703
[
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   704
  if test "x[$]$1" = x; then
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   705
    eval $1="\${$1_${OPENJDK_TARGET_CPU}}"
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   706
  fi
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   707
])
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   708
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   709
###############################################################################
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   710
AC_DEFUN_ONCE([BASIC_SETUP_DEVKIT],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   711
[
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   712
  AC_ARG_WITH([devkit], [AS_HELP_STRING([--with-devkit],
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   713
      [use this devkit for compilers, tools and resources])])
30022
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   714
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   715
  if test "x$with_devkit" = xyes; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   716
    AC_MSG_ERROR([--with-devkit must have a value])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   717
  elif test "x$with_devkit" != x && test "x$with_devkit" != xno; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   718
    BASIC_FIXUP_PATH([with_devkit])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   719
    DEVKIT_ROOT="$with_devkit"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   720
    # Check for a meta data info file in the root of the devkit
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   721
    if test -f "$DEVKIT_ROOT/devkit.info"; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   722
      . $DEVKIT_ROOT/devkit.info
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   723
      # This potentially sets the following:
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   724
      # A descriptive name of the devkit
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   725
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_NAME])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   726
      # Corresponds to --with-extra-path
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   727
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_EXTRA_PATH])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   728
      # Corresponds to --with-toolchain-path
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   729
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_TOOLCHAIN_PATH])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   730
      # Corresponds to --with-sysroot
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   731
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_SYSROOT])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   732
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   733
      # Identifies the Visual Studio version in the devkit
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   734
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_VS_VERSION])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   735
      # The Visual Studio include environment variable
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   736
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_VS_INCLUDE])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   737
      # The Visual Studio lib environment variable
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   738
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_VS_LIB])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   739
      # Corresponds to --with-msvcr-dll
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   740
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_MSVCR_DLL])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   741
      # Corresponds to --with-msvcp-dll
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   742
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_MSVCP_DLL])
50073
35b22ca681d1 8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents: 49587
diff changeset
   743
      # Corresponds to --with-ucrt-dll-dir
35b22ca681d1 8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents: 49587
diff changeset
   744
      BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_UCRT_DLL_DIR])
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   745
    fi
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   746
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   747
    AC_MSG_CHECKING([for devkit])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   748
    if test "x$DEVKIT_NAME" != x; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   749
      AC_MSG_RESULT([$DEVKIT_NAME in $DEVKIT_ROOT])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   750
    else
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   751
      AC_MSG_RESULT([$DEVKIT_ROOT])
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   752
    fi
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   753
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   754
    BASIC_PREPEND_TO_PATH([EXTRA_PATH],$DEVKIT_EXTRA_PATH)
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   755
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   756
    # Fallback default of just /bin if DEVKIT_PATH is not defined
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   757
    if test "x$DEVKIT_TOOLCHAIN_PATH" = x; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   758
      DEVKIT_TOOLCHAIN_PATH="$DEVKIT_ROOT/bin"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   759
    fi
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   760
    BASIC_PREPEND_TO_PATH([TOOLCHAIN_PATH],$DEVKIT_TOOLCHAIN_PATH)
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   761
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   762
    # If DEVKIT_SYSROOT is set, use that, otherwise try a couple of known
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   763
    # places for backwards compatiblity.
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   764
    if test "x$DEVKIT_SYSROOT" != x; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   765
      SYSROOT="$DEVKIT_SYSROOT"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   766
    elif test -d "$DEVKIT_ROOT/$host_alias/libc"; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   767
      SYSROOT="$DEVKIT_ROOT/$host_alias/libc"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   768
    elif test -d "$DEVKIT_ROOT/$host/sys-root"; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   769
      SYSROOT="$DEVKIT_ROOT/$host/sys-root"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   770
    fi
47479
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47456
diff changeset
   771
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   772
    if test "x$DEVKIT_ROOT" != x; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   773
      DEVKIT_LIB_DIR="$DEVKIT_ROOT/lib"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   774
      if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   775
        DEVKIT_LIB_DIR="$DEVKIT_ROOT/lib64"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   776
      fi
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   777
      AC_SUBST(DEVKIT_LIB_DIR)
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   778
    fi
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 48032
diff changeset
   779
  fi
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   780
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   781
  # You can force the sysroot if the sysroot encoded into the compiler tools
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   782
  # is not correct.
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   783
  AC_ARG_WITH(sys-root, [AS_HELP_STRING([--with-sys-root],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   784
      [alias for --with-sysroot for backwards compatability])],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   785
      [SYSROOT=$with_sys_root]
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   786
  )
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   787
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   788
  AC_ARG_WITH(sysroot, [AS_HELP_STRING([--with-sysroot],
25034
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   789
      [use this directory as sysroot])],
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   790
      [SYSROOT=$with_sysroot]
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   791
  )
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   792
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   793
  AC_ARG_WITH([tools-dir], [AS_HELP_STRING([--with-tools-dir],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   794
      [alias for --with-toolchain-path for backwards compatibility])],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   795
      [BASIC_PREPEND_TO_PATH([TOOLCHAIN_PATH],$with_tools_dir)]
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   796
  )
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   797
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   798
  AC_ARG_WITH([toolchain-path], [AS_HELP_STRING([--with-toolchain-path],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   799
      [prepend these directories when searching for toolchain binaries (compilers etc)])],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   800
      [BASIC_PREPEND_TO_PATH([TOOLCHAIN_PATH],$with_toolchain_path)]
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   801
  )
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   802
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   803
  AC_ARG_WITH([extra-path], [AS_HELP_STRING([--with-extra-path],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   804
      [prepend these directories to the default path])],
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   805
      [BASIC_PREPEND_TO_PATH([EXTRA_PATH],$with_extra_path)]
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   806
  )
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   807
25034
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   808
  if test "x$OPENJDK_BUILD_OS" = "xmacosx"; then
31123
2c85f4a793d1 8087193: Support building with devkits on Macosx
erikj
parents: 30419
diff changeset
   809
    # If a devkit has been supplied, find xcodebuild in the toolchain_path.
2c85f4a793d1 8087193: Support building with devkits on Macosx
erikj
parents: 30419
diff changeset
   810
    # If not, detect if Xcode is installed by running xcodebuild -version
25034
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   811
    # if no Xcode installed, xcodebuild exits with 1
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   812
    # if Xcode is installed, even if xcode-select is misconfigured, then it exits with 0
31123
2c85f4a793d1 8087193: Support building with devkits on Macosx
erikj
parents: 30419
diff changeset
   813
    if test "x$DEVKIT_ROOT" != x || /usr/bin/xcodebuild -version >/dev/null 2>&1; then
25034
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   814
      # We need to use xcodebuild in the toolchain dir provided by the user, this will
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   815
      # fall back on the stub binary in /usr/bin/xcodebuild
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   816
      AC_PATH_PROG([XCODEBUILD], [xcodebuild], [/usr/bin/xcodebuild], [$TOOLCHAIN_PATH])
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   817
    else
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   818
      # this should result in SYSROOT being empty, unless --with-sysroot is provided
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   819
      # when only the command line tools are installed there are no SDKs, so headers
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   820
      # are copied into the system frameworks
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   821
      XCODEBUILD=
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   822
      AC_SUBST(XCODEBUILD)
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   823
    fi
27595
cff167b3bfa2 8065914: Various improvements and cleanup of build system
ihse
parents: 27586
diff changeset
   824
25034
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   825
    AC_MSG_CHECKING([for sdk name])
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   826
    AC_ARG_WITH([sdk-name], [AS_HELP_STRING([--with-sdk-name],
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   827
        [use the platform SDK of the given name. @<:@macosx@:>@])],
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   828
        [SDKNAME=$with_sdk_name]
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   829
    )
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   830
    AC_MSG_RESULT([$SDKNAME])
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   831
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   832
    # if toolchain path is specified then don't rely on system headers, they may not compile
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   833
    HAVE_SYSTEM_FRAMEWORK_HEADERS=0
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   834
    test -z "$TOOLCHAIN_PATH" && \
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   835
      HAVE_SYSTEM_FRAMEWORK_HEADERS=`test ! -f /System/Library/Frameworks/Foundation.framework/Headers/Foundation.h; echo $?`
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   836
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   837
    if test -z "$SYSROOT"; then
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   838
      if test -n "$XCODEBUILD"; then
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   839
        # if we don't have system headers, use default SDK name (last resort)
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   840
        if test -z "$SDKNAME" -a $HAVE_SYSTEM_FRAMEWORK_HEADERS -eq 0; then
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   841
          SDKNAME=${SDKNAME:-macosx}
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   842
        fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   843
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   844
        if test -n "$SDKNAME"; then
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   845
          # Call xcodebuild to determine SYSROOT
38843
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
   846
          SYSROOT=`"$XCODEBUILD" -sdk $SDKNAME -version | $GREP '^Path: ' | $SED 's/Path: //'`
25034
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   847
        fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   848
      else
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   849
        if test $HAVE_SYSTEM_FRAMEWORK_HEADERS -eq 0; then
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   850
          AC_MSG_ERROR([No xcodebuild tool and no system framework headers found, use --with-sysroot or --with-sdk-name to provide a path to a valid SDK])
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   851
        fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   852
      fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   853
    else
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   854
      # warn user if --with-sdk-name was also set
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   855
      if test -n "$with_sdk_name"; then
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   856
        AC_MSG_WARN([Both SYSROOT and --with-sdk-name are set, only SYSROOT will be used])
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   857
      fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   858
    fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   859
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   860
    if test $HAVE_SYSTEM_FRAMEWORK_HEADERS -eq 0 -a -z "$SYSROOT"; then
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   861
      # If no system framework headers, then SYSROOT must be set, or we won't build
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   862
      AC_MSG_ERROR([Unable to determine SYSROOT and no headers found in /System/Library/Frameworks. Check Xcode configuration, --with-sysroot or --with-sdk-name arguments.])
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   863
    fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   864
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   865
    # Perform a basic sanity test
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   866
    if test ! -f "$SYSROOT/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h"; then
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   867
      if test -z "$SYSROOT"; then
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   868
        AC_MSG_ERROR([Unable to find required framework headers, provide a path to an SDK via --with-sysroot or --with-sdk-name and be sure Xcode is installed properly])
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   869
      else
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   870
        AC_MSG_ERROR([Invalid SDK or SYSROOT path, dependent framework headers not found])
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   871
      fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   872
    fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   873
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   874
    # set SDKROOT too, Xcode tools will pick it up
43383
5e74f3dd4656 8173107: Fix autoconf/spec.gmk mismatches
ihse
parents: 43050
diff changeset
   875
    SDKROOT="$SYSROOT"
5e74f3dd4656 8173107: Fix autoconf/spec.gmk mismatches
ihse
parents: 43050
diff changeset
   876
    AC_SUBST(SDKROOT)
25034
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   877
  fi
d9ca34c227b8 8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents: 23428
diff changeset
   878
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   879
  # Prepend the extra path to the global path
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   880
  BASIC_PREPEND_TO_PATH([PATH],$EXTRA_PATH)
22726
d984085c5ff2 8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents: 22722
diff changeset
   881
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   882
  AC_MSG_CHECKING([for sysroot])
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   883
  AC_MSG_RESULT([$SYSROOT])
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   884
  AC_MSG_CHECKING([for toolchain path])
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   885
  AC_MSG_RESULT([$TOOLCHAIN_PATH])
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   886
  AC_MSG_CHECKING([for extra path])
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
   887
  AC_MSG_RESULT([$EXTRA_PATH])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   888
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   889
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   890
###############################################################################
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   891
AC_DEFUN_ONCE([BASIC_SETUP_OUTPUT_DIR],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   892
[
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   893
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   894
  AC_ARG_WITH(conf-name, [AS_HELP_STRING([--with-conf-name],
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   895
      [use this as the name of the configuration @<:@generated from important configuration options@:>@])],
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   896
      [ CONF_NAME=${with_conf_name} ])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   897
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   898
  # Test from where we are running configure, in or outside of src root.
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
   899
  AC_MSG_CHECKING([where to store configuration])
54455
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   900
  if test "x$CONFIGURE_START_DIR" = "x$TOPDIR" \
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   901
      || test "x$CONFIGURE_START_DIR" = "x$CUSTOM_ROOT" \
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   902
      || test "x$CONFIGURE_START_DIR" = "x$TOPDIR/make/autoconf" \
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   903
      || test "x$CONFIGURE_START_DIR" = "x$TOPDIR/make" ; then
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   904
    # We are running configure from the src root.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   905
    # Create a default ./build/target-variant-debuglevel output root.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   906
    if test "x${CONF_NAME}" = x; then
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
   907
      AC_MSG_RESULT([in default location])
51824
9777d724ace8 8210962: Deprecate jdk-variant
ihse
parents: 51822
diff changeset
   908
      CONF_NAME="${OPENJDK_TARGET_OS}-${OPENJDK_TARGET_CPU}-${JVM_VARIANTS_WITH_AND}-${DEBUG_LEVEL}"
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
   909
    else
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
   910
      AC_MSG_RESULT([in build directory with custom name])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   911
    fi
47346
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47253
diff changeset
   912
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47253
diff changeset
   913
    if test "x$CUSTOM_ROOT" != x; then
54490
bf07e140c49c 8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents: 54455
diff changeset
   914
      WORKSPACE_ROOT="${CUSTOM_ROOT}"
47346
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47253
diff changeset
   915
    else
54490
bf07e140c49c 8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents: 54455
diff changeset
   916
      WORKSPACE_ROOT="${TOPDIR}"
47346
ea082b202a23 8189263: Introduce CUSTOM_ROOT
ihse
parents: 47253
diff changeset
   917
    fi
54490
bf07e140c49c 8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents: 54455
diff changeset
   918
    OUTPUTDIR="${WORKSPACE_ROOT}/build/${CONF_NAME}"
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   919
    $MKDIR -p "$OUTPUTDIR"
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   920
    if test ! -d "$OUTPUTDIR"; then
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   921
      AC_MSG_ERROR([Could not create build directory $OUTPUTDIR])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   922
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   923
  else
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   924
    # We are running configure from outside of the src dir.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   925
    # Then use the current directory as output dir!
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   926
    # If configuration is situated in normal build directory, just use the build
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   927
    # directory name as configuration name, otherwise use the complete path.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   928
    if test "x${CONF_NAME}" = x; then
54455
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   929
      CONF_NAME=`$ECHO $CONFIGURE_START_DIR | $SED -e "s!^${TOPDIR}/build/!!"`
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   930
    fi
54455
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   931
    OUTPUTDIR="$CONFIGURE_START_DIR"
22722
03797b5d2ba3 8035495: Improvements in autoconf integration
ihse
parents: 22721
diff changeset
   932
    AC_MSG_RESULT([in current directory])
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   933
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   934
    # WARNING: This might be a bad thing to do. You need to be sure you want to
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   935
    # have a configuration in this directory. Do some sanity checks!
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   936
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   937
    if test ! -e "$OUTPUTDIR/spec.gmk"; then
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   938
      # If we have a spec.gmk, we have run here before and we are OK. Otherwise, check for
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   939
      # other files
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   940
      files_present=`$LS $OUTPUTDIR`
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   941
      # Configure has already touched config.log and confdefs.h in the current dir when this check
14280
7d8ad47b2dbf 8002220: build-infra: update for mac, solaris 11 issues
erikj
parents: 14112
diff changeset
   942
      # is performed.
30022
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   943
      filtered_files=`$ECHO "$files_present" \
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   944
          | $SED -e 's/config.log//g' \
30419
8fb7370e2d33 8080082: configure fails if you create an empty directory and then run configure from it
ihse
parents: 30417
diff changeset
   945
              -e 's/configure.log//g' \
8fb7370e2d33 8080082: configure fails if you create an empty directory and then run configure from it
ihse
parents: 30417
diff changeset
   946
              -e 's/confdefs.h//g' \
48846
fe434d568439 8197571: Change storage location for generated-configure.sh
ihse
parents: 48743
diff changeset
   947
              -e 's/configure-support//g' \
30419
8fb7370e2d33 8080082: configure fails if you create an empty directory and then run configure from it
ihse
parents: 30417
diff changeset
   948
              -e 's/ //g' \
30022
362d77fbf008 8078437: Enable use of devkits for Windows
erikj
parents: 29865
diff changeset
   949
          | $TR -d '\n'`
14280
7d8ad47b2dbf 8002220: build-infra: update for mac, solaris 11 issues
erikj
parents: 14112
diff changeset
   950
      if test "x$filtered_files" != x; then
54455
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   951
        AC_MSG_NOTICE([Current directory is $CONFIGURE_START_DIR.])
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   952
        AC_MSG_NOTICE([Since this is not the source root, configure will output the configuration here])
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   953
        AC_MSG_NOTICE([(as opposed to creating a configuration in <src_root>/build/<conf-name>).])
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   954
        AC_MSG_NOTICE([However, this directory is not empty. This is not allowed, since it could])
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   955
        AC_MSG_NOTICE([seriously mess up just about everything.])
47252
fdac20095dff 8187543: Replace SRC_ROOT with TOPDIR
ihse
parents: 47217
diff changeset
   956
        AC_MSG_NOTICE([Try 'cd $TOPDIR' and restart configure])
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   957
        AC_MSG_NOTICE([(or create a new empty directory and cd to it).])
54455
542735f2a53e 8221907: make reconfigure breaks when configured with relative paths
erikj
parents: 53830
diff changeset
   958
        AC_MSG_ERROR([Will not continue creating configuration in $CONFIGURE_START_DIR])
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   959
      fi
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   960
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   961
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   962
  AC_MSG_CHECKING([what configuration name to use])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   963
  AC_MSG_RESULT([$CONF_NAME])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   964
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   965
  BASIC_FIXUP_PATH(OUTPUTDIR)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   966
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   967
  CONFIGURESUPPORT_OUTPUTDIR="$OUTPUTDIR/configure-support"
29848
13db4da8a496 8077563: 9-dev 1-prebuild fail: "configure: error: write failure creating /config.status"
erikj
parents: 29790
diff changeset
   968
  $MKDIR -p "$CONFIGURESUPPORT_OUTPUTDIR"
13db4da8a496 8077563: 9-dev 1-prebuild fail: "configure: error: write failure creating /config.status"
erikj
parents: 29790
diff changeset
   969
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   970
  SPEC="$OUTPUTDIR/spec.gmk"
43383
5e74f3dd4656 8173107: Fix autoconf/spec.gmk mismatches
ihse
parents: 43050
diff changeset
   971
  AC_SUBST(SPEC)
5e74f3dd4656 8173107: Fix autoconf/spec.gmk mismatches
ihse
parents: 43050
diff changeset
   972
  AC_SUBST(CONF_NAME)
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   973
  AC_SUBST(OUTPUTDIR)
54490
bf07e140c49c 8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents: 54455
diff changeset
   974
  AC_SUBST(WORKSPACE_ROOT)
29790
79641c886929 8073634: Improve clean targets
erikj
parents: 29663
diff changeset
   975
  AC_SUBST(CONFIGURESUPPORT_OUTPUTDIR)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   976
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   977
  # The spec.gmk file contains all variables for the make system.
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   978
  AC_CONFIG_FILES([$OUTPUTDIR/spec.gmk:$AUTOCONF_DIR/spec.gmk.in])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   979
  # The bootcycle-spec.gmk file contains support for boot cycle builds.
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   980
  AC_CONFIG_FILES([$OUTPUTDIR/bootcycle-spec.gmk:$AUTOCONF_DIR/bootcycle-spec.gmk.in])
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   981
  # The buildjdk-spec.gmk file contains support for building a buildjdk when cross compiling.
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   982
  AC_CONFIG_FILES([$OUTPUTDIR/buildjdk-spec.gmk:$AUTOCONF_DIR/buildjdk-spec.gmk.in])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   983
  # The compare.sh is used to compare the build output to other builds.
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   984
  AC_CONFIG_FILES([$OUTPUTDIR/compare.sh:$AUTOCONF_DIR/compare.sh.in])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   985
  # The generated Makefile knows where the spec.gmk is and where the source is.
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   986
  # You can run make from the OUTPUTDIR, or from the top-level Makefile
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
   987
  # which will look for generated configurations
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
   988
  AC_CONFIG_FILES([$OUTPUTDIR/Makefile:$AUTOCONF_DIR/Makefile.in])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   989
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   990
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   991
#%%% Simple tools %%%
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   992
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
   993
###############################################################################
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   994
# Check if we have found a usable version of make
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   995
# $1: the path to a potential make binary (or empty)
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   996
# $2: the description on how we found this
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   997
AC_DEFUN([BASIC_CHECK_MAKE_VERSION],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   998
[
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
   999
  MAKE_CANDIDATE="$1"
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1000
  DESCRIPTION="$2"
29865
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1001
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1002
  # On Cygwin, we require a newer version of make than on other platforms
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1003
  if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1004
    MAKE_VERSION_EXPR="-e 4\."
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1005
    MAKE_REQUIRED_VERSION="4.0"
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1006
   else
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1007
    MAKE_VERSION_EXPR="-e 3\.8[[12]] -e 4\."
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1008
    MAKE_REQUIRED_VERSION="3.81"
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1009
  fi
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1010
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1011
  if test "x$MAKE_CANDIDATE" != x; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1012
    AC_MSG_NOTICE([Testing potential make at $MAKE_CANDIDATE, found using $DESCRIPTION])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1013
    MAKE_VERSION_STRING=`$MAKE_CANDIDATE --version | $HEAD -n 1`
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1014
    IS_GNU_MAKE=`$ECHO $MAKE_VERSION_STRING | $GREP 'GNU Make'`
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1015
    if test "x$IS_GNU_MAKE" = x; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1016
      AC_MSG_NOTICE([Found potential make at $MAKE_CANDIDATE, however, this is not GNU Make. Ignoring.])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1017
    else
29865
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1018
      IS_MODERN_MAKE=`$ECHO $MAKE_VERSION_STRING | $GREP $MAKE_VERSION_EXPR`
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1019
      if test "x$IS_MODERN_MAKE" = x; then
29865
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1020
        AC_MSG_NOTICE([Found GNU make at $MAKE_CANDIDATE, however this is not version $MAKE_REQUIRED_VERSION or later. (it is: $MAKE_VERSION_STRING). Ignoring.])
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1021
      else
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1022
        if test "x$OPENJDK_BUILD_OS" = "xwindows"; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1023
          if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1024
            MAKE_EXPECTED_ENV='cygwin'
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1025
          elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1026
            MAKE_EXPECTED_ENV='msys'
53110
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1027
          elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.wsl"; then
53240
f6ab4cc4c70e 8216278: Fix devkit and basic Jib support on WSL
erikj
parents: 53110
diff changeset
  1028
            MAKE_EXPECTED_ENV='x86_64-.*-linux-gnu'
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1029
          else
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1030
            AC_MSG_ERROR([Unknown Windows environment])
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1031
          fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1032
          MAKE_BUILT_FOR=`$MAKE_CANDIDATE --version | $GREP -i 'built for'`
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1033
          IS_MAKE_CORRECT_ENV=`$ECHO $MAKE_BUILT_FOR | $GREP $MAKE_EXPECTED_ENV`
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1034
        else
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1035
          # Not relevant for non-Windows
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1036
          IS_MAKE_CORRECT_ENV=true
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1037
        fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1038
        if test "x$IS_MAKE_CORRECT_ENV" = x; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1039
          AC_MSG_NOTICE([Found GNU make version $MAKE_VERSION_STRING at $MAKE_CANDIDATE, but it is not for $MAKE_EXPECTED_ENV (it says: $MAKE_BUILT_FOR). Ignoring.])
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1040
        else
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1041
          FOUND_MAKE=$MAKE_CANDIDATE
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1042
          BASIC_FIXUP_EXECUTABLE(FOUND_MAKE)
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1043
        fi
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1044
      fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1045
    fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1046
  fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1047
])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1048
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1049
###############################################################################
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1050
AC_DEFUN([BASIC_CHECK_MAKE_OUTPUT_SYNC],
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1051
[
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1052
  # Check if make supports the output sync option and if so, setup using it.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1053
  AC_MSG_CHECKING([if make --output-sync is supported])
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1054
  if $MAKE --version -O > /dev/null 2>&1; then
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1055
    OUTPUT_SYNC_SUPPORTED=true
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1056
    AC_MSG_RESULT([yes])
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1057
    AC_MSG_CHECKING([for output-sync value])
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1058
    AC_ARG_WITH([output-sync], [AS_HELP_STRING([--with-output-sync],
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1059
      [set make output sync type if supported by make. @<:@recurse@:>@])],
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1060
      [OUTPUT_SYNC=$with_output_sync])
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1061
    if test "x$OUTPUT_SYNC" = "x"; then
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1062
      OUTPUT_SYNC=none
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1063
    fi
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1064
    AC_MSG_RESULT([$OUTPUT_SYNC])
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1065
    if ! $MAKE --version -O$OUTPUT_SYNC > /dev/null 2>&1; then
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1066
      AC_MSG_ERROR([Make did not the support the value $OUTPUT_SYNC as output sync type.])
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1067
    fi
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1068
  else
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1069
    OUTPUT_SYNC_SUPPORTED=false
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1070
    AC_MSG_RESULT([no])
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1071
  fi
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1072
  AC_SUBST(OUTPUT_SYNC_SUPPORTED)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1073
  AC_SUBST(OUTPUT_SYNC)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1074
])
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1075
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1076
###############################################################################
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1077
# Goes looking for a usable version of GNU make.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1078
AC_DEFUN([BASIC_CHECK_GNU_MAKE],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1079
[
33396
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
  1080
  BASIC_SETUP_TOOL([MAKE],
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
  1081
  [
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1082
    # Try our hardest to locate a correct version of GNU make
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1083
    AC_PATH_PROGS(CHECK_GMAKE, gmake)
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1084
    BASIC_CHECK_MAKE_VERSION("$CHECK_GMAKE", [gmake in PATH])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1085
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1086
    if test "x$FOUND_MAKE" = x; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1087
      AC_PATH_PROGS(CHECK_MAKE, make)
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1088
      BASIC_CHECK_MAKE_VERSION("$CHECK_MAKE", [make in PATH])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1089
    fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1090
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1091
    if test "x$FOUND_MAKE" = x; then
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
  1092
      if test "x$TOOLCHAIN_PATH" != x; then
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
  1093
        # We have a toolchain path, check that as well before giving up.
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1094
        OLD_PATH=$PATH
23428
3c8a05bf4656 8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents: 22726
diff changeset
  1095
        PATH=$TOOLCHAIN_PATH:$PATH
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1096
        AC_PATH_PROGS(CHECK_TOOLSDIR_GMAKE, gmake)
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1097
        BASIC_CHECK_MAKE_VERSION("$CHECK_TOOLSDIR_GMAKE", [gmake in tools-dir])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1098
        if test "x$FOUND_MAKE" = x; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1099
          AC_PATH_PROGS(CHECK_TOOLSDIR_MAKE, make)
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1100
          BASIC_CHECK_MAKE_VERSION("$CHECK_TOOLSDIR_MAKE", [make in tools-dir])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1101
        fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1102
        PATH=$OLD_PATH
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1103
      fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1104
    fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1105
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1106
    if test "x$FOUND_MAKE" = x; then
29865
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1107
      AC_MSG_ERROR([Cannot find GNU make $MAKE_REQUIRED_VERSION or newer! Please put it in the path, or add e.g. MAKE=/opt/gmake3.81/make as argument to configure.])
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1108
    fi
33396
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
  1109
  ],[
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
  1110
    # If MAKE was set by user, verify the version
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
  1111
    BASIC_CHECK_MAKE_VERSION("$MAKE", [user supplied MAKE=$MAKE])
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
  1112
    if test "x$FOUND_MAKE" = x; then
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
  1113
      AC_MSG_ERROR([The specified make (by MAKE=$MAKE) is not GNU make $MAKE_REQUIRED_VERSION or newer.])
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
  1114
    fi
19196d07fa98 8140591: Add configure argument specifying make executable in JPRT
erikj
parents: 33052
diff changeset
  1115
  ])
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1116
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1117
  MAKE=$FOUND_MAKE
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1118
  AC_SUBST(MAKE)
29865
60e4eefce6e4 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents: 29848
diff changeset
  1119
  AC_MSG_NOTICE([Using GNU make at $FOUND_MAKE (version: $MAKE_VERSION_STRING)])
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1120
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 25034
diff changeset
  1121
  BASIC_CHECK_MAKE_OUTPUT_SYNC
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1122
])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1123
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1124
###############################################################################
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1125
AC_DEFUN([BASIC_CHECK_FIND_DELETE],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1126
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1127
  # Test if find supports -delete
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1128
  AC_MSG_CHECKING([if find supports -delete])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1129
  FIND_DELETE="-delete"
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1130
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1131
  DELETEDIR=`$MKTEMP -d tmp.XXXXXXXXXX` || (echo Could not create temporary directory!; exit $?)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1132
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1133
  echo Hejsan > $DELETEDIR/TestIfFindSupportsDelete
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1134
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1135
  TEST_DELETE=`$FIND "$DELETEDIR" -name TestIfFindSupportsDelete $FIND_DELETE 2>&1`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1136
  if test -f $DELETEDIR/TestIfFindSupportsDelete; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1137
    # No, it does not.
38843
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
  1138
    $RM $DELETEDIR/TestIfFindSupportsDelete
26130
2ea1262921e0 8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents: 25882
diff changeset
  1139
    if test "x$OPENJDK_TARGET_OS" = "xaix"; then
2ea1262921e0 8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents: 25882
diff changeset
  1140
      # AIX 'find' is buggy if called with '-exec {} \+' and an empty file list
38843
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
  1141
      FIND_DELETE="-print | $XARGS $RM"
26130
2ea1262921e0 8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents: 25882
diff changeset
  1142
    else
38843
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
  1143
      FIND_DELETE="-exec $RM \{\} \+"
26130
2ea1262921e0 8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents: 25882
diff changeset
  1144
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1145
    AC_MSG_RESULT([no])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1146
  else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1147
    AC_MSG_RESULT([yes])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1148
  fi
38843
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
  1149
  $RMDIR $DELETEDIR
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1150
  AC_SUBST(FIND_DELETE)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1151
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1152
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1153
###############################################################################
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1154
AC_DEFUN([BASIC_CHECK_TAR],
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1155
[
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1156
  # Test which kind of tar was found
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1157
  if test "x$($TAR --version | $GREP "GNU tar")" != "x"; then
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1158
    TAR_TYPE="gnu"
43046
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42136
diff changeset
  1159
  elif test "x$($TAR --version | $GREP "bsdtar")" != "x"; then
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42136
diff changeset
  1160
    TAR_TYPE="bsd"
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1161
  elif test "x$($TAR -v | $GREP "bsdtar")" != "x"; then
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1162
    TAR_TYPE="bsd"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1163
  elif test "x$OPENJDK_BUILD_OS" = "xsolaris"; then
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1164
    TAR_TYPE="solaris"
58000
62926eb5e40e 8230485: add handling of aix tar in configure
mbaesken
parents: 54490
diff changeset
  1165
  elif test "x$OPENJDK_BUILD_OS" = "xaix"; then
62926eb5e40e 8230485: add handling of aix tar in configure
mbaesken
parents: 54490
diff changeset
  1166
    TAR_TYPE="aix"
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1167
  fi
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1168
  AC_MSG_CHECKING([what type of tar was found])
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1169
  AC_MSG_RESULT([$TAR_TYPE])
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1170
38924
55921b080a8e 8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents: 37972
diff changeset
  1171
  TAR_CREATE_FILE_PARAM=""
55921b080a8e 8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents: 37972
diff changeset
  1172
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1173
  if test "x$TAR_TYPE" = "xgnu"; then
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1174
    TAR_INCLUDE_PARAM="T"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1175
    TAR_SUPPORTS_TRANSFORM="true"
38924
55921b080a8e 8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents: 37972
diff changeset
  1176
    if test "x$OPENJDK_TARGET_OS" = "xsolaris"; then
55921b080a8e 8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents: 37972
diff changeset
  1177
      # When using gnu tar for Solaris targets, need to use compatibility mode
55921b080a8e 8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents: 37972
diff changeset
  1178
      TAR_CREATE_EXTRA_PARAM="--format=ustar"
55921b080a8e 8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents: 37972
diff changeset
  1179
    fi
58000
62926eb5e40e 8230485: add handling of aix tar in configure
mbaesken
parents: 54490
diff changeset
  1180
  elif test "x$TAR_TYPE" = "aix"; then
62926eb5e40e 8230485: add handling of aix tar in configure
mbaesken
parents: 54490
diff changeset
  1181
    # -L InputList of aix tar: name of file listing the files and directories
62926eb5e40e 8230485: add handling of aix tar in configure
mbaesken
parents: 54490
diff changeset
  1182
    # that need to be   archived or extracted
62926eb5e40e 8230485: add handling of aix tar in configure
mbaesken
parents: 54490
diff changeset
  1183
    TAR_INCLUDE_PARAM="L"
62926eb5e40e 8230485: add handling of aix tar in configure
mbaesken
parents: 54490
diff changeset
  1184
    TAR_SUPPORTS_TRANSFORM="false"
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1185
  else
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1186
    TAR_INCLUDE_PARAM="I"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1187
    TAR_SUPPORTS_TRANSFORM="false"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1188
  fi
38924
55921b080a8e 8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents: 37972
diff changeset
  1189
  AC_SUBST(TAR_TYPE)
55921b080a8e 8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents: 37972
diff changeset
  1190
  AC_SUBST(TAR_CREATE_EXTRA_PARAM)
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1191
  AC_SUBST(TAR_INCLUDE_PARAM)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1192
  AC_SUBST(TAR_SUPPORTS_TRANSFORM)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1193
])
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1194
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1195
###############################################################################
43050
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1196
AC_DEFUN([BASIC_CHECK_GREP],
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1197
[
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1198
  # Test that grep supports -Fx with a list of pattern which includes null pattern.
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1199
  # This is a problem for the grep resident on AIX.
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1200
  AC_MSG_CHECKING([that grep ($GREP) -Fx handles empty lines in the pattern list correctly])
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1201
  # Multiple subsequent spaces..
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1202
  STACK_SPACES='aaa   bbb   ccc'
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1203
  # ..converted to subsequent newlines, causes STACK_LIST to be a list with some empty
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1204
  # patterns in it.
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1205
  STACK_LIST=${STACK_SPACES// /$'\n'}
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1206
  NEEDLE_SPACES='ccc bbb aaa'
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1207
  NEEDLE_LIST=${NEEDLE_SPACES// /$'\n'}
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1208
  RESULT="$($GREP -Fvx "$STACK_LIST" <<< "$NEEDLE_LIST")"
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1209
  if test "x$RESULT" == "x"; then
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1210
    AC_MSG_RESULT([yes])
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1211
  else
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1212
    if test "x$OPENJDK_TARGET_OS" = "xaix"; then
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1213
      ADDINFO="Please make sure you use GNU grep, usually found at /opt/freeware/bin."
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1214
    fi
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1215
    AC_MSG_ERROR([grep does not handle -Fx correctly. ${ADDINFO}])
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1216
  fi
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1217
])
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1218
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1219
###############################################################################
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1220
AC_DEFUN_ONCE([BASIC_SETUP_COMPLEX_TOOLS],
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1221
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1222
  BASIC_CHECK_GNU_MAKE
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1223
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1224
  BASIC_CHECK_FIND_DELETE
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37960
diff changeset
  1225
  BASIC_CHECK_TAR
43050
318848ed8345 8172712: configure should check that grep handles empty pattern correctly
stuefe
parents: 43046
diff changeset
  1226
  BASIC_CHECK_GREP
53830
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1227
  BASIC_SETUP_PANDOC
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1228
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1229
  # These tools might not be installed by default,
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1230
  # need hint on how to install them.
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
  1231
  BASIC_REQUIRE_PROGS(UNZIP, unzip)
42136
f872c8278074 8168037: Use ZIPEXE instead of ZIP to avoid clash with options for zip
ihse
parents: 41462
diff changeset
  1232
  # Since zip uses "ZIP" as a environment variable for passing options, we need
f872c8278074 8168037: Use ZIPEXE instead of ZIP to avoid clash with options for zip
ihse
parents: 41462
diff changeset
  1233
  # to name our variable differently, hence ZIPEXE.
f872c8278074 8168037: Use ZIPEXE instead of ZIP to avoid clash with options for zip
ihse
parents: 41462
diff changeset
  1234
  BASIC_REQUIRE_PROGS(ZIPEXE, zip)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1235
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1236
  # Non-required basic tools
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
  1237
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
  1238
  BASIC_PATH_PROGS(LDD, ldd)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1239
  if test "x$LDD" = "x"; then
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1240
    # List shared lib dependencies is used for
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1241
    # debug output and checking for forbidden dependencies.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1242
    # We can build without it.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1243
    LDD="true"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1244
  fi
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
  1245
  BASIC_PATH_PROGS(READELF, [greadelf readelf])
44727
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 44078
diff changeset
  1246
  BASIC_PATH_PROGS(DOT, dot)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
  1247
  BASIC_PATH_PROGS(HG, hg)
51676
5a1be00ea4f6 8210283: Support git as an SCM alternative in the build
erikj
parents: 50818
diff changeset
  1248
  BASIC_PATH_PROGS(GIT, git)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
  1249
  BASIC_PATH_PROGS(STAT, stat)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
  1250
  BASIC_PATH_PROGS(TIME, time)
44465
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44078
diff changeset
  1251
  BASIC_PATH_PROGS(FLOCK, flock)
41462
a4f7ec34a58f 8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents: 41040
diff changeset
  1252
  # Dtrace is usually found in /usr/sbin on Solaris, but that directory may not
a4f7ec34a58f 8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents: 41040
diff changeset
  1253
  # be in the user path.
a4f7ec34a58f 8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents: 41040
diff changeset
  1254
  BASIC_PATH_PROGS(DTRACE, dtrace, $PATH:/usr/sbin)
32715
4d558a41a1ec 8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents: 31123
diff changeset
  1255
  BASIC_PATH_PROGS(PATCH, [gpatch patch])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1256
  # Check if it's GNU time
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1257
  IS_GNU_TIME=`$TIME --version 2>&1 | $GREP 'GNU time'`
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1258
  if test "x$IS_GNU_TIME" != x; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1259
    IS_GNU_TIME=yes
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1260
  else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1261
    IS_GNU_TIME=no
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1262
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1263
  AC_SUBST(IS_GNU_TIME)
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1264
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1265
  if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
  1266
    BASIC_REQUIRE_PROGS(DSYMUTIL, dsymutil)
50818
e46b9e514479 8189429: SA: MacOSX: Replace the deprecated PT_ATTACH with PT_ATTACHEXC
jgeorge
parents: 50266
diff changeset
  1267
    BASIC_REQUIRE_PROGS(MIG, mig)
22475
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
  1268
    BASIC_REQUIRE_PROGS(XATTR, xattr)
777928354ad9 8031759: Improved tool overriding in configure
ihse
parents: 22474
diff changeset
  1269
    BASIC_PATH_PROGS(CODESIGN, codesign)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1270
    if test "x$CODESIGN" != "x"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1271
      # Verify that the openjdk_codesign certificate is present
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1272
      AC_MSG_CHECKING([if openjdk_codesign certificate is present])
38843
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
  1273
      $RM codesign-testfile
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
  1274
      $TOUCH codesign-testfile
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
  1275
      $CODESIGN -s openjdk_codesign codesign-testfile 2>&AS_MESSAGE_LOG_FD >&AS_MESSAGE_LOG_FD || CODESIGN=
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 37972
diff changeset
  1276
      $RM codesign-testfile
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1277
      if test "x$CODESIGN" = x; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1278
        AC_MSG_RESULT([no])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1279
      else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1280
        AC_MSG_RESULT([yes])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1281
      fi
17661
55c5e0f7b9cc 8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents: 17593
diff changeset
  1282
    fi
31123
2c85f4a793d1 8087193: Support building with devkits on Macosx
erikj
parents: 30419
diff changeset
  1283
    BASIC_REQUIRE_PROGS(SETFILE, SetFile)
49078
039e63e471e1 8198859: Use elfedit to silence linker warnings on solaris
ihse
parents: 48946
diff changeset
  1284
  elif test "x$OPENJDK_TARGET_OS" = "xsolaris"; then
039e63e471e1 8198859: Use elfedit to silence linker warnings on solaris
ihse
parents: 48946
diff changeset
  1285
    BASIC_REQUIRE_PROGS(ELFEDIT, elfedit)
17661
55c5e0f7b9cc 8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents: 17593
diff changeset
  1286
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1287
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1288
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1289
###############################################################################
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1290
# Check if build directory is on local disk. If not possible to determine,
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1291
# we prefer to claim it's local.
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1292
# Argument 1: directory to test
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1293
# Argument 2: what to do if it is on local disk
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1294
# Argument 3: what to do otherwise (remote disk or failure)
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1295
AC_DEFUN([BASIC_CHECK_DIR_ON_LOCAL_DISK],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1296
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1297
  # df -l lists only local disks; if the given directory is not found then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1298
  # a non-zero exit code is given
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1299
  if test "x$DF" = x; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1300
    if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1301
      # msys does not have df; use Windows "net use" instead.
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1302
      IS_NETWORK_DISK=`net use | grep \`pwd -W | cut -d ":" -f 1 | tr a-z A-Z\`:`
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1303
      if test "x$IS_NETWORK_DISK" = x; then
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1304
        $2
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1305
      else
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1306
        $3
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1307
      fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1308
    else
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1309
      # No df here, say it's local
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1310
      $2
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1311
    fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1312
  else
47397
7236260e166c 8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents: 47346
diff changeset
  1313
    # JDK-8189619
7236260e166c 8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents: 47346
diff changeset
  1314
    # df on AIX does not understand -l. On modern AIXes it understands "-T local" which
7236260e166c 8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents: 47346
diff changeset
  1315
    # is the same. On older AIXes we just continue to live with a "not local build" warning.
7236260e166c 8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents: 47346
diff changeset
  1316
    if test "x$OPENJDK_TARGET_OS" = xaix; then
7236260e166c 8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents: 47346
diff changeset
  1317
      DF_LOCAL_ONLY_OPTION='-T local'
7236260e166c 8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents: 47346
diff changeset
  1318
    else
7236260e166c 8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents: 47346
diff changeset
  1319
      DF_LOCAL_ONLY_OPTION='-l'
7236260e166c 8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents: 47346
diff changeset
  1320
    fi
7236260e166c 8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents: 47346
diff changeset
  1321
    if $DF $DF_LOCAL_ONLY_OPTION $1 > /dev/null 2>&1; then
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1322
      $2
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1323
    else
53110
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1324
      # In WSL, local Windows drives are considered remote by df, but we are
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1325
      # required to build into a directory accessible from windows, so consider
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1326
      # them local here.
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1327
      if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.wsl"; then
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1328
        if $DF $1 | $GREP -q "^[[A-Z]]:"; then
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1329
          $2
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1330
        else
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1331
          $3
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1332
        fi
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1333
      else
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1334
        $3
50677f43ac3d 8215445: Enable building for Windows in WSL
erikj
parents: 53087
diff changeset
  1335
      fi
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1336
    fi
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
  1337
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1338
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1339
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1340
###############################################################################
15050
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1341
# Check that source files have basic read permissions set. This might
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1342
# not be the case in cygwin in certain conditions.
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1343
AC_DEFUN_ONCE([BASIC_CHECK_SRC_PERMS],
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1344
[
25882
bd4315f0084b 8022177: Windows/MSYS builds broken
erikj
parents: 25854
diff changeset
  1345
  if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
47252
fdac20095dff 8187543: Replace SRC_ROOT with TOPDIR
ihse
parents: 47217
diff changeset
  1346
    file_to_test="$TOPDIR/LICENSE"
15050
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1347
    if test `$STAT -c '%a' "$file_to_test"` -lt 400; then
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1348
      AC_MSG_ERROR([Bad file permissions on src files. This is usually caused by cloning the repositories with a non cygwin hg in a directory not created in cygwin.])
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1349
    fi
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1350
  fi
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1351
])
98a901883580 8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents: 14736
diff changeset
  1352
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1353
###############################################################################
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1354
AC_DEFUN_ONCE([BASIC_TEST_USABILITY_ISSUES],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1355
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1356
  AC_MSG_CHECKING([if build directory is on local disk])
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
  1357
  BASIC_CHECK_DIR_ON_LOCAL_DISK($OUTPUTDIR,
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1358
      [OUTPUT_DIR_IS_LOCAL="yes"],
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1359
      [OUTPUT_DIR_IS_LOCAL="no"])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1360
  AC_MSG_RESULT($OUTPUT_DIR_IS_LOCAL)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1361
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1362
  BASIC_CHECK_SRC_PERMS
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1363
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1364
  # Check if the user has any old-style ALT_ variables set.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1365
  FOUND_ALT_VARIABLES=`env | grep ^ALT_`
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1366
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1367
  # Before generating output files, test if they exist. If they do, this is a reconfigure.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1368
  # Since we can't properly handle the dependencies for this, warn the user about the situation
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
  1369
  if test -e $OUTPUTDIR/spec.gmk; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1370
    IS_RECONFIGURE=yes
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1371
  else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1372
    IS_RECONFIGURE=no
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19763
diff changeset
  1373
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
  1374
])
28602
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1375
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1376
###############################################################################
28602
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1377
# Check for support for specific options in bash
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1378
AC_DEFUN_ONCE([BASIC_CHECK_BASH_OPTIONS],
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1379
[
43654
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1380
  # Check bash version
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1381
  # Extra [ ] to stop m4 mangling
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1382
  [ BASH_VER=`$BASH --version | $SED -n  -e 's/^.*bash.*ersion *\([0-9.]*\).*$/\1/ p'` ]
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1383
  AC_MSG_CHECKING([bash version])
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1384
  AC_MSG_RESULT([$BASH_VER])
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1385
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1386
  BASH_MAJOR=`$ECHO $BASH_VER | $CUT -d . -f 1`
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1387
  BASH_MINOR=`$ECHO $BASH_VER | $CUT -d . -f 2`
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1388
  if test $BASH_MAJOR -lt 3 || (test $BASH_MAJOR -eq 3 && test $BASH_MINOR -lt 2); then
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1389
    AC_MSG_ERROR([bash version 3.2 or better is required])
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1390
  fi
32ee04ab8949 8174069: Verify that bash is at least version 3.2
ihse
parents: 43383
diff changeset
  1391
28602
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1392
  # Test if bash supports pipefail.
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1393
  AC_MSG_CHECKING([if bash supports pipefail])
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1394
  if ${BASH} -c 'set -o pipefail'; then
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1395
    BASH_ARGS="$BASH_ARGS -o pipefail"
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1396
    AC_MSG_RESULT([yes])
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1397
  else
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1398
    AC_MSG_RESULT([no])
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1399
  fi
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1400
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1401
  AC_MSG_CHECKING([if bash supports errexit (-e)])
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1402
  if ${BASH} -e -c 'true'; then
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1403
    BASH_ARGS="$BASH_ARGS -e"
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1404
    AC_MSG_RESULT([yes])
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1405
  else
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1406
    AC_MSG_RESULT([no])
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1407
  fi
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1408
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1409
  AC_SUBST(BASH_ARGS)
51c0dcf51b67 8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents: 27595
diff changeset
  1410
])
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1411
34491
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1412
################################################################################
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1413
#
53830
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1414
# Setup Pandoc
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1415
#
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1416
AC_DEFUN_ONCE([BASIC_SETUP_PANDOC],
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1417
[
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1418
  BASIC_PATH_PROGS(PANDOC, pandoc)
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1419
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1420
  PANDOC_MARKDOWN_FLAG="markdown"
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1421
  if test -n "$PANDOC"; then
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1422
    AC_MSG_CHECKING(if the pandoc smart extension needs to be disabled for markdown)
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1423
    if $PANDOC --list-extensions | $GREP -q '\+smart'; then
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1424
      AC_MSG_RESULT([yes])
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1425
      PANDOC_MARKDOWN_FLAG="markdown-smart"
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1426
    else
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1427
      AC_MSG_RESULT([no])
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1428
    fi
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1429
  fi
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1430
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1431
  if test -n "$PANDOC"; then
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1432
    ENABLE_PANDOC="true"
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1433
  else
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1434
    ENABLE_PANDOC="false"
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1435
  fi
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1436
  AC_SUBST(ENABLE_PANDOC)
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1437
  AC_SUBST(PANDOC_MARKDOWN_FLAG)
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1438
])
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1439
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1440
################################################################################
e403ff78116c 8217032: Check pandoc capabilities in configure
erikj
parents: 53729
diff changeset
  1441
#
34491
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1442
# Default make target
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1443
#
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1444
AC_DEFUN_ONCE([BASIC_SETUP_DEFAULT_MAKE_TARGET],
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1445
[
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1446
  AC_ARG_WITH(default-make-target, [AS_HELP_STRING([--with-default-make-target],
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1447
      [set the default make target @<:@exploded-image@:>@])])
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1448
  if test "x$with_default_make_target" = "x" \
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1449
      || test "x$with_default_make_target" = "xyes"; then
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1450
    DEFAULT_MAKE_TARGET="exploded-image"
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1451
  elif test "x$with_default_make_target" = "xno"; then
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1452
    AC_MSG_ERROR([--without-default-make-target is not a valid option])
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1453
  else
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1454
    DEFAULT_MAKE_TARGET="$with_default_make_target"
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1455
  fi
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1456
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1457
  AC_SUBST(DEFAULT_MAKE_TARGET)
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1458
])
307c28cb36c2 8136782: Introduce a build/configure wrapper
erikj
parents: 33396
diff changeset
  1459
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1460
###############################################################################
49568
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1461
# Setup the default value for LOG=
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1462
#
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1463
AC_DEFUN_ONCE([BASIC_SETUP_DEFAULT_LOG],
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1464
[
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1465
  AC_ARG_WITH(log, [AS_HELP_STRING([--with-log],
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1466
      [[default vaue for make LOG argument [warn]]])])
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1467
  AC_MSG_CHECKING([for default LOG value])
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1468
  if test "x$with_log" = x; then
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1469
    DEFAULT_LOG=""
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1470
  else
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1471
    # Syntax for valid LOG options is a bit too complex for it to be worth
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1472
    # implementing a test for correctness in configure. Just accept it.
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1473
    DEFAULT_LOG=$with_log
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1474
  fi
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1475
  AC_MSG_RESULT([$DEFAULT_LOG])
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1476
  AC_SUBST(DEFAULT_LOG)
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1477
])
3e9cb3562d83 8201320: Allow PrintFailureReports to be turned off
ihse
parents: 49078
diff changeset
  1478
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49568
diff changeset
  1479
###############################################################################
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1480
# Code to run after AC_OUTPUT
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1481
AC_DEFUN_ONCE([BASIC_POST_CONFIG_OUTPUT],
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1482
[
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1483
  # Try to move config.log (generated by autoconf) to the configure-support directory.
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1484
  if test -e ./config.log; then
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1485
    $MV -f ./config.log "$CONFIGURESUPPORT_OUTPUTDIR/config.log" 2> /dev/null
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1486
  fi
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1487
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1488
  # Rotate our log file (configure.log)
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
  1489
  if test -e "$OUTPUTDIR/configure.log.old"; then
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
  1490
    $RM -f "$OUTPUTDIR/configure.log.old"
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1491
  fi
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
  1492
  if test -e "$OUTPUTDIR/configure.log"; then
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
  1493
    $MV -f "$OUTPUTDIR/configure.log" "$OUTPUTDIR/configure.log.old" 2> /dev/null
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1494
  fi
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1495
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1496
  # Move configure.log from current directory to the build output root
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1497
  if test -e ./configure.log; then
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
  1498
    $MV -f ./configure.log "$OUTPUTDIR/configure.log" 2> /dev/null
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1499
  fi
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1500
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1501
  # Make the compare script executable
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47252
diff changeset
  1502
  $CHMOD +x $OUTPUTDIR/compare.sh
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 30022
diff changeset
  1503
])