make/autoconf/help.m4
author jlaskey
Thu, 14 Nov 2019 12:50:08 -0400
branchJDK-8193209-branch
changeset 59088 da026c172c1e
parent 55135 8b1f7d88746a
permissions -rw-r--r--
add missing files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
53999
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
     2
# Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     4
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    10
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    15
# accompanied this code).
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    16
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    20
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    23
# questions.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    24
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    25
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    26
AC_DEFUN_ONCE([HELP_SETUP_DEPENDENCY_HELP],
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    27
[
53999
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
    28
  AC_CHECK_PROGS(PKGHANDLER, zypper apt-get yum brew port pkgutil pkgadd)
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    29
])
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    30
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    31
AC_DEFUN([HELP_MSG_MISSING_DEPENDENCY],
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    32
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
    33
  # Print a helpful message on how to acquire the necessary build dependency.
49234
3375a8039fde 8193017: Import freetype sources into OpenJDK source tree
prr
parents: 48678
diff changeset
    34
  # $1 is the help tag: cups, alsa etc
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
    35
  MISSING_DEPENDENCY=$1
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    36
55135
8b1f7d88746a 8219788: Configure recommends JDK 8
erikj
parents: 53999
diff changeset
    37
  if test "x$MISSING_DEPENDENCY" = "xopenjdk"; then
8b1f7d88746a 8219788: Configure recommends JDK 8
erikj
parents: 53999
diff changeset
    38
    HELP_MSG="OpenJDK distributions are available at http://jdk.java.net/."
8b1f7d88746a 8219788: Configure recommends JDK 8
erikj
parents: 53999
diff changeset
    39
  elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    40
    cygwin_help $MISSING_DEPENDENCY
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    41
  elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    42
    msys_help $MISSING_DEPENDENCY
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    43
  else
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    44
    PKGHANDLER_COMMAND=
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    45
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    46
    case $PKGHANDLER in
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    47
      apt-get)
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    48
        apt_help     $MISSING_DEPENDENCY ;;
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    49
      yum)
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    50
        yum_help     $MISSING_DEPENDENCY ;;
43046
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
    51
      brew)
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
    52
        brew_help    $MISSING_DEPENDENCY ;;
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    53
      port)
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    54
        port_help    $MISSING_DEPENDENCY ;;
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    55
      pkgutil)
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    56
        pkgutil_help $MISSING_DEPENDENCY ;;
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    57
      pkgadd)
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    58
        pkgadd_help  $MISSING_DEPENDENCY ;;
53999
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
    59
      zypper)
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
    60
        zypper_help  $MISSING_DEPENDENCY ;;
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    61
    esac
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    62
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    63
    if test "x$PKGHANDLER_COMMAND" != x; then
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    64
      HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'."
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    65
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
    66
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    67
])
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    68
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    69
cygwin_help() {
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
    70
  case $1 in
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    71
    unzip)
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    72
      PKGHANDLER_COMMAND="( cd <location of cygwin setup.exe> && cmd /c setup -q -P unzip )"
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    73
      HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'."
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    74
      ;;
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    75
    zip)
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    76
      PKGHANDLER_COMMAND="( cd <location of cygwin setup.exe> && cmd /c setup -q -P zip )"
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    77
      HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'."
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    78
      ;;
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    79
    make)
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    80
      PKGHANDLER_COMMAND="( cd <location of cygwin setup.exe> && cmd /c setup -q -P make )"
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    81
      HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'."
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    82
      ;;
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
    83
  esac
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    84
}
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    85
20648
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    86
msys_help() {
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    87
  PKGHANDLER_COMMAND=""
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    88
}
d4ac4db6e70c 8001925: Add useful help messages if freetype is not found on Windows
ihse
parents: 20363
diff changeset
    89
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    90
apt_help() {
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
    91
  case $1 in
32809
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 30417
diff changeset
    92
    reduced)
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 30417
diff changeset
    93
      PKGHANDLER_COMMAND="sudo apt-get install gcc-multilib g++-multilib" ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    94
    devkit)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
    95
      PKGHANDLER_COMMAND="sudo apt-get install build-essential" ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    96
    alsa)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
    97
      PKGHANDLER_COMMAND="sudo apt-get install libasound2-dev" ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    98
    cups)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
    99
      PKGHANDLER_COMMAND="sudo apt-get install libcups2-dev" ;;
47507
5a270d2dfa5d 8170681: Remove fontconfig header files from JDK source tree
prr
parents: 47253
diff changeset
   100
    fontconfig)
5a270d2dfa5d 8170681: Remove fontconfig header files from JDK source tree
prr
parents: 47253
diff changeset
   101
      PKGHANDLER_COMMAND="sudo apt-get install libfontconfig1-dev" ;;
20654
2c17cbccf2ef 8001922: Improve freetype handling.
ihse
parents: 20648
diff changeset
   102
    freetype)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   103
      PKGHANDLER_COMMAND="sudo apt-get install libfreetype6-dev" ;;
32921
8e0250dfa145 8138761: Improved handling of libffi, and cleanup of libraries.m4
ihse
parents: 32809
diff changeset
   104
    ffi)
8e0250dfa145 8138761: Improved handling of libffi, and cleanup of libraries.m4
ihse
parents: 32809
diff changeset
   105
      PKGHANDLER_COMMAND="sudo apt-get install libffi-dev" ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   106
    x11)
52658
2d18e5ed0f8d 8213944: Fix AIX build after the removal of Xrandr.h and add a configure check for it
simonis
parents: 49582
diff changeset
   107
      PKGHANDLER_COMMAND="sudo apt-get install libx11-dev libxext-dev libxrender-dev libxrandr-dev libxtst-dev libxt-dev" ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   108
    ccache)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   109
      PKGHANDLER_COMMAND="sudo apt-get install ccache" ;;
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   110
    dtrace)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   111
      PKGHANDLER_COMMAND="sudo apt-get install systemtap-sdt-dev" ;;
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   112
  esac
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   113
}
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   114
53999
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   115
zypper_help() {
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   116
  case $1 in
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   117
    devkit)
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   118
      PKGHANDLER_COMMAND="sudo zypper install gcc gcc-c++" ;;
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   119
    alsa)
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   120
      PKGHANDLER_COMMAND="sudo zypper install alsa-devel" ;;
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   121
    cups)
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   122
      PKGHANDLER_COMMAND="sudo zypper install cups-devel" ;;
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   123
    fontconfig)
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   124
      PKGHANDLER_COMMAND="sudo zypper install fontconfig-devel" ;;
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   125
    freetype)
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   126
      PKGHANDLER_COMMAND="sudo zypper install freetype-devel" ;;
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   127
    x11)
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   128
      PKGHANDLER_COMMAND="sudo zypper install libX11-devel libXext-devel libXrender-devel libXrandr-devel libXtst-devel libXt-devel libXi-devel" ;;
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   129
    ccache)
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   130
      PKGHANDLER_COMMAND="sudo zypper install ccache" ;;
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   131
  esac
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   132
}
d7852bb72332 8219920: dependency help output in configure-step : support zypper tool
mbaesken
parents: 52658
diff changeset
   133
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   134
yum_help() {
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   135
  case $1 in
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   136
    devkit)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   137
      PKGHANDLER_COMMAND="sudo yum groupinstall \"Development Tools\"" ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   138
    alsa)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   139
      PKGHANDLER_COMMAND="sudo yum install alsa-lib-devel" ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   140
    cups)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   141
      PKGHANDLER_COMMAND="sudo yum install cups-devel" ;;
47507
5a270d2dfa5d 8170681: Remove fontconfig header files from JDK source tree
prr
parents: 47253
diff changeset
   142
    fontconfig)
5a270d2dfa5d 8170681: Remove fontconfig header files from JDK source tree
prr
parents: 47253
diff changeset
   143
      PKGHANDLER_COMMAND="sudo yum install fontconfig-devel" ;;
20654
2c17cbccf2ef 8001922: Improve freetype handling.
ihse
parents: 20648
diff changeset
   144
    freetype)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   145
      PKGHANDLER_COMMAND="sudo yum install freetype-devel" ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   146
    x11)
52658
2d18e5ed0f8d 8213944: Fix AIX build after the removal of Xrandr.h and add a configure check for it
simonis
parents: 49582
diff changeset
   147
      PKGHANDLER_COMMAND="sudo yum install libXtst-devel libXt-devel libXrender-devel libXrandr-devel libXi-devel" ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   148
    ccache)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   149
      PKGHANDLER_COMMAND="sudo yum install ccache" ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   150
  esac
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   151
}
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   152
43046
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
   153
brew_help() {
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
   154
  case $1 in
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
   155
    freetype)
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
   156
      PKGHANDLER_COMMAND="brew install freetype" ;;
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
   157
    ccache)
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
   158
      PKGHANDLER_COMMAND="brew install ccache" ;;
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
   159
  esac
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
   160
}
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42532
diff changeset
   161
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   162
port_help() {
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   163
  PKGHANDLER_COMMAND=""
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   164
}
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   165
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   166
pkgutil_help() {
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   167
  PKGHANDLER_COMMAND=""
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   168
}
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   169
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   170
pkgadd_help() {
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   171
  PKGHANDLER_COMMAND=""
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   172
}
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   173
22721
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   174
# This function will check if we're called from the "configure" wrapper while
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   175
# printing --help. If so, we will print out additional information that can
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   176
# only be extracted within the autoconf script, and then exit. This must be
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   177
# called at the very beginning in configure.ac.
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   178
AC_DEFUN_ONCE([HELP_PRINT_ADDITIONAL_HELP_AND_EXIT],
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   179
[
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 34604
diff changeset
   180
  if test "x$CONFIGURE_PRINT_ADDITIONAL_HELP" != x; then
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 34604
diff changeset
   181
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 34604
diff changeset
   182
    # Print available toolchains
22721
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   183
    $PRINTF "The following toolchains are available as arguments to --with-toolchain-type.\n"
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   184
    $PRINTF "Which are valid to use depends on the build platform.\n"
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   185
    for toolchain in $VALID_TOOLCHAINS_all; do
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   186
      # Use indirect variable referencing
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   187
      toolchain_var_name=TOOLCHAIN_DESCRIPTION_$toolchain
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   188
      TOOLCHAIN_DESCRIPTION=${!toolchain_var_name}
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   189
      $PRINTF "  %-10s  %s\n" $toolchain "$TOOLCHAIN_DESCRIPTION"
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   190
    done
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   191
    $PRINTF "\n"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   192
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   193
    # Print available jvm features
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   194
    $PRINTF "The following JVM features are available as arguments to --with-jvm-features.\n"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   195
    $PRINTF "Which are valid to use depends on the target platform.\n  "
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   196
    $PRINTF "%s " $VALID_JVM_FEATURES
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   197
    $PRINTF "\n"
22721
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   198
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   199
    # And now exit directly
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   200
    exit 0
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   201
  fi
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   202
])
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   203
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   204
AC_DEFUN_ONCE([HELP_PRINT_SUMMARY_AND_WARNINGS],
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   205
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   206
  # Finally output some useful information to the user
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   207
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   208
  printf "\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   209
  printf "====================================================\n"
22717
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   210
  if test "x$no_create" != "xyes"; then
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   211
    if test "x$IS_RECONFIGURE" != "xyes"; then
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47216
diff changeset
   212
      printf "A new configuration has been successfully created in\n%s\n" "$OUTPUTDIR"
22717
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   213
    else
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47216
diff changeset
   214
      printf "The existing configuration has been successfully updated in\n%s\n" "$OUTPUTDIR"
22717
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   215
    fi
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   216
  else
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   217
    if test "x$IS_RECONFIGURE" != "xyes"; then
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   218
      printf "A configuration has been successfully checked but not created\n"
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   219
    else
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47216
diff changeset
   220
      printf "The existing configuration has been successfully checked in\n%s\n" "$OUTPUTDIR"
22717
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   221
    fi
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   222
  fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   223
  if test "x$CONFIGURE_COMMAND_LINE" != x; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   224
    printf "using configure arguments '$CONFIGURE_COMMAND_LINE'.\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   225
  else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   226
    printf "using default settings.\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   227
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   228
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   229
  printf "\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   230
  printf "Configuration summary:\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   231
  printf "* Debug level:    $DEBUG_LEVEL\n"
23424
65039fb99fda 8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents: 22721
diff changeset
   232
  printf "* HS debug level: $HOTSPOT_DEBUG_LEVEL\n"
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   233
  printf "* JVM variants:   $JVM_VARIANTS\n"
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49234
diff changeset
   234
  printf "* JVM features:   "
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49234
diff changeset
   235
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49234
diff changeset
   236
  for variant in $JVM_VARIANTS; do
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49234
diff changeset
   237
    features_var_name=JVM_FEATURES_$variant
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49234
diff changeset
   238
    JVM_FEATURES_FOR_VARIANT=${!features_var_name}
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49234
diff changeset
   239
    printf "$variant: \'$JVM_FEATURES_FOR_VARIANT\' "
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49234
diff changeset
   240
  done
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49234
diff changeset
   241
  printf "\n"
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49234
diff changeset
   242
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   243
  printf "* OpenJDK target: OS: $OPENJDK_TARGET_OS, CPU architecture: $OPENJDK_TARGET_CPU_ARCH, address length: $OPENJDK_TARGET_CPU_BITS\n"
33926
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30417
diff changeset
   244
  printf "* Version string: $VERSION_STRING ($VERSION_SHORT)\n"
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   245
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   246
  printf "\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   247
  printf "Tools summary:\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   248
  if test "x$OPENJDK_BUILD_OS" = "xwindows"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   249
    printf "* Environment:    $WINDOWS_ENV_VENDOR version $WINDOWS_ENV_VERSION (root at $WINDOWS_ENV_ROOT_PATH)\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   250
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   251
  printf "* Boot JDK:       $BOOT_JDK_VERSION (at $BOOT_JDK)\n"
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 47507
diff changeset
   252
  printf "* Toolchain:      $TOOLCHAIN_TYPE ($TOOLCHAIN_DESCRIPTION)\n"
22721
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   253
  printf "* C Compiler:     Version $CC_VERSION_NUMBER (at $CC)\n"
63761da45392 8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents: 22717
diff changeset
   254
  printf "* C++ Compiler:   Version $CXX_VERSION_NUMBER (at $CXX)\n"
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   255
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   256
  printf "\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   257
  printf "Build performance summary:\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   258
  printf "* Cores to use:   $JOBS\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   259
  printf "* Memory limit:   $MEMORY_SIZE MB\n"
22474
83fec92ec43d 8027584: Disable ccache by default
ihse
parents: 22467
diff changeset
   260
  if test "x$CCACHE_STATUS" != "x"; then
83fec92ec43d 8027584: Disable ccache by default
ihse
parents: 22467
diff changeset
   261
    printf "* ccache status:  $CCACHE_STATUS\n"
83fec92ec43d 8027584: Disable ccache by default
ihse
parents: 22467
diff changeset
   262
  fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   263
  printf "\n"
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   264
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36296
diff changeset
   265
  if test "x$BUILDING_MULTIPLE_JVM_VARIANTS" = "xtrue"; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   266
    printf "NOTE: You have requested to build more than one version of the JVM, which\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   267
    printf "will result in longer build times.\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   268
    printf "\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   269
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   270
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   271
  if test "x$FOUND_ALT_VARIABLES" != "x"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   272
    printf "WARNING: You have old-style ALT_ environment variables set.\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   273
    printf "These are not respected, and will be ignored. It is recommended\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   274
    printf "that you clean your environment. The following variables are set:\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   275
    printf "$FOUND_ALT_VARIABLES\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   276
    printf "\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   277
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   278
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   279
  if test "x$OUTPUT_DIR_IS_LOCAL" != "xyes"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   280
    printf "WARNING: Your build output directory is not on a local disk.\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   281
    printf "This will severely degrade build performance!\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   282
    printf "It is recommended that you create an output directory on a local disk,\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   283
    printf "and run the configure script again from that directory.\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   284
    printf "\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   285
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   286
22717
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   287
  if test "x$IS_RECONFIGURE" = "xyes" && test "x$no_create" != "xyes"; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   288
    printf "WARNING: The result of this configuration has overridden an older\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   289
    printf "configuration. You *should* run 'make clean' to make sure you get a\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   290
    printf "proper build. Failure to do so might result in strange build problems.\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   291
    printf "\n"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19524
diff changeset
   292
  fi
22717
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   293
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   294
  if test "x$IS_RECONFIGURE" != "xyes" && test "x$no_create" = "xyes"; then
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   295
    printf "WARNING: The result of this configuration was not saved.\n"
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   296
    printf "You should run without '--no-create | -n' to create the configuration.\n"
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   297
    printf "\n"
aa6f400923a9 8034979: Configuration help messages don't consider --no-create
mduigou
parents: 22474
diff changeset
   298
  fi
48678
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 47507
diff changeset
   299
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 47507
diff changeset
   300
  if test "x$UNSUPPORTED_TOOLCHAIN_VERSION" = "xyes"; then
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 47507
diff changeset
   301
    printf "WARNING: The toolchain version used is known to have issues. Please\n"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 47507
diff changeset
   302
    printf "consider using a supported version unless you know what you are doing.\n"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 47507
diff changeset
   303
    printf "\n"
bcce1fa183e7 8196108: Add build support for VS 2015/2017
erikj
parents: 47507
diff changeset
   304
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   305
])
27587
e51da3db3464 8065215: Print warning summary at end of configure
ihse
parents: 27330
diff changeset
   306
e51da3db3464 8065215: Print warning summary at end of configure
ihse
parents: 27330
diff changeset
   307
AC_DEFUN_ONCE([HELP_REPEAT_WARNINGS],
e51da3db3464 8065215: Print warning summary at end of configure
ihse
parents: 27330
diff changeset
   308
[
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   309
  # Locate config.log.
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   310
  if test -e "$CONFIGURESUPPORT_OUTPUTDIR/config.log"; then
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   311
    CONFIG_LOG_PATH="$CONFIGURESUPPORT_OUTPUTDIR"
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   312
  elif test -e "./config.log"; then
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   313
    CONFIG_LOG_PATH="."
27587
e51da3db3464 8065215: Print warning summary at end of configure
ihse
parents: 27330
diff changeset
   314
  fi
e51da3db3464 8065215: Print warning summary at end of configure
ihse
parents: 27330
diff changeset
   315
30417
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   316
  if test -e "$CONFIG_LOG_PATH/config.log"; then
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   317
    $GREP '^configure:.*: WARNING:' "$CONFIG_LOG_PATH/config.log" > /dev/null 2>&1
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   318
    if test $? -eq 0; then
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   319
      printf "The following warnings were produced. Repeated here for convenience:\n"
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   320
      # We must quote sed expression (using []) to stop m4 from eating the [].
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   321
      $GREP '^configure:.*: WARNING:' "$CONFIG_LOG_PATH/config.log" | $SED -e [ 's/^configure:[0-9]*: //' ]
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   322
      printf "\n"
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   323
    fi
581a2762eef1 8079891: Store configure log in $BUILD/configure.log
ihse
parents: 28901
diff changeset
   324
  fi
27587
e51da3db3464 8065215: Print warning summary at end of configure
ihse
parents: 27330
diff changeset
   325
])