make/autoconf/jdk-options.m4
author erikj
Tue, 12 Sep 2017 19:03:56 +0200
changeset 47217 72e3ae9a25eb
parent 47216 71c04702a3d5
child 47255 181dc03e0be7
permissions -rw-r--r--
8187444: Forest Consolidation: Make build work Reviewed-by: darcy, ihse Contributed-by: erik.joelsson@oracle.com, maurizio.cimadamore@oracle.com, sundararajan.athijegannathan@oracle.com, jonathan.gibbons@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     1
#
43046
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42979
diff changeset
     2
# Copyright (c) 2011, 2017, 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
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    26
###############################################################################
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    27
# Check which variant of the JDK that we want to build.
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    28
# Currently we have:
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    29
#    normal:   standard edition
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    30
# but the custom make system may add other variants
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    31
#
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    32
# Effectively the JDK variant gives a name to a specific set of
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    33
# modules to compile into the JDK.
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    34
AC_DEFUN_ONCE([JDKOPT_SETUP_JDK_VARIANT],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    35
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    36
  AC_MSG_CHECKING([which variant of the JDK to build])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    37
  AC_ARG_WITH([jdk-variant], [AS_HELP_STRING([--with-jdk-variant],
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    38
      [JDK variant to build (normal) @<:@normal@:>@])])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    39
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    40
  if test "x$with_jdk_variant" = xnormal || test "x$with_jdk_variant" = x; then
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    41
    JDK_VARIANT="normal"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    42
  else
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
    43
    AC_MSG_ERROR([The available JDK variants are: normal])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    44
  fi
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
    45
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    46
  AC_SUBST(JDK_VARIANT)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    47
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    48
  AC_MSG_RESULT([$JDK_VARIANT])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    49
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    50
22460
0273c023680c 8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents: 17819
diff changeset
    51
###############################################################################
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    52
# Set the debug level
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    53
#    release: no debug information, all optimizations, no asserts.
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    54
#    optimized: no debug information, all optimizations, no asserts, HotSpot target is 'optimized'.
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    55
#    fastdebug: debug information (-g), all optimizations, all asserts
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    56
#    slowdebug: debug information (-g), no optimizations, all asserts
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    57
AC_DEFUN_ONCE([JDKOPT_SETUP_DEBUG_LEVEL],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    58
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    59
  DEBUG_LEVEL="release"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    60
  AC_MSG_CHECKING([which debug level to use])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    61
  AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    62
      [set the debug level to fastdebug (shorthand for --with-debug-level=fastdebug) @<:@disabled@:>@])],
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    63
      [
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    64
        ENABLE_DEBUG="${enableval}"
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    65
        DEBUG_LEVEL="fastdebug"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    66
      ], [ENABLE_DEBUG="no"])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    67
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    68
  AC_ARG_WITH([debug-level], [AS_HELP_STRING([--with-debug-level],
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
    69
      [set the debug level (release, fastdebug, slowdebug, optimized) @<:@release@:>@])],
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    70
      [
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    71
        DEBUG_LEVEL="${withval}"
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    72
        if test "x$ENABLE_DEBUG" = xyes; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    73
          AC_MSG_ERROR([You cannot use both --enable-debug and --with-debug-level at the same time.])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    74
        fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    75
      ])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    76
  AC_MSG_RESULT([$DEBUG_LEVEL])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    77
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    78
  if test "x$DEBUG_LEVEL" != xrelease && \
23424
65039fb99fda 8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents: 22721
diff changeset
    79
      test "x$DEBUG_LEVEL" != xoptimized && \
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    80
      test "x$DEBUG_LEVEL" != xfastdebug && \
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    81
      test "x$DEBUG_LEVEL" != xslowdebug; then
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
    82
    AC_MSG_ERROR([Allowed debug levels are: release, fastdebug, slowdebug and optimized])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    83
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    84
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    85
  # Translate DEBUG_LEVEL to debug level used by Hotspot
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    86
  HOTSPOT_DEBUG_LEVEL="$DEBUG_LEVEL"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    87
  if test "x$DEBUG_LEVEL" = xrelease; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    88
    HOTSPOT_DEBUG_LEVEL="product"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    89
  elif test "x$DEBUG_LEVEL" = xslowdebug; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    90
    HOTSPOT_DEBUG_LEVEL="debug"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    91
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    92
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    93
  if test "x$DEBUG_LEVEL" = xoptimized; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    94
    # The debug level 'optimized' is a little special because it is currently only
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    95
    # applicable to the HotSpot build where it means to build a completely
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    96
    # optimized version of the VM without any debugging code (like for the
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    97
    # 'release' debug level which is called 'product' in the HotSpot build) but
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    98
    # with the exception that it can contain additional code which is otherwise
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    99
    # protected by '#ifndef PRODUCT' macros. These 'optimized' builds are used to
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   100
    # test new and/or experimental features which are not intended for customer
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   101
    # shipment. Because these new features need to be tested and benchmarked in
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   102
    # real world scenarios, we want to build the containing JDK at the 'release'
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   103
    # debug level.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   104
    DEBUG_LEVEL="release"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   105
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   106
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   107
  AC_SUBST(HOTSPOT_DEBUG_LEVEL)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   108
  AC_SUBST(DEBUG_LEVEL)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   109
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   110
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   111
###############################################################################
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   112
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   113
# Should we build only OpenJDK even if closed sources are present?
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   114
#
15069
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   115
AC_DEFUN_ONCE([JDKOPT_SETUP_OPEN_OR_CUSTOM],
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   116
[
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   117
  AC_ARG_ENABLE([openjdk-only], [AS_HELP_STRING([--enable-openjdk-only],
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   118
      [suppress building custom source even if present @<:@disabled@:>@])],,[enable_openjdk_only="no"])
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   119
39384
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 38843
diff changeset
   120
  AC_MSG_CHECKING([if custom source is suppressed (openjdk-only)])
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 38843
diff changeset
   121
  AC_MSG_RESULT([$enable_openjdk_only])
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 38843
diff changeset
   122
  if test "x$enable_openjdk_only" = "xyes"; then
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 38843
diff changeset
   123
    SUPPRESS_CUSTOM_EXTENSIONS="true"
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 38843
diff changeset
   124
  elif test "x$enable_openjdk_only" = "xno"; then
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 38843
diff changeset
   125
    SUPPRESS_CUSTOM_EXTENSIONS="false"
15069
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   126
  else
39384
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 38843
diff changeset
   127
    AC_MSG_ERROR([Invalid value for --enable-openjdk-only: $enable_openjdk_only])
15069
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   128
  fi
22714
a752920c4317 8034191: Move relevant parts of build system to new closed repo
ihse
parents: 22709
diff changeset
   129
a752920c4317 8034191: Move relevant parts of build system to new closed repo
ihse
parents: 22709
diff changeset
   130
  # custom-make-dir is deprecated. Please use your custom-hook.m4 to override
a752920c4317 8034191: Move relevant parts of build system to new closed repo
ihse
parents: 22709
diff changeset
   131
  # the IncludeCustomExtension macro.
a752920c4317 8034191: Move relevant parts of build system to new closed repo
ihse
parents: 22709
diff changeset
   132
  BASIC_DEPRECATED_ARG_WITH(custom-make-dir)
15069
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   133
])
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   134
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   135
AC_DEFUN_ONCE([JDKOPT_SETUP_JDK_OPTIONS],
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   136
[
41046
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   137
  # Should we build a JDK without a graphical UI?
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   138
  AC_MSG_CHECKING([headless only])
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   139
  AC_ARG_ENABLE([headless-only], [AS_HELP_STRING([--enable-headless-only],
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   140
      [only build headless (no GUI) support @<:@disabled@:>@])])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   141
41046
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   142
  if test "x$enable_headless_only" = "xyes"; then
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   143
    ENABLE_HEADLESS_ONLY="true"
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   144
    AC_MSG_RESULT([yes])
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   145
  elif test "x$enable_headless_only" = "xno"; then
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   146
    ENABLE_HEADLESS_ONLY="false"
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   147
    AC_MSG_RESULT([no])
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   148
  elif test "x$enable_headless_only" = "x"; then
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   149
    ENABLE_HEADLESS_ONLY="false"
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   150
    AC_MSG_RESULT([no])
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   151
  else
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   152
    AC_MSG_ERROR([--enable-headless-only can only take yes or no])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   153
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   154
41046
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   155
  AC_SUBST(ENABLE_HEADLESS_ONLY)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   156
44727
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   157
  # Should we build the complete docs, or just a lightweight version?
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   158
  AC_ARG_ENABLE([full-docs], [AS_HELP_STRING([--enable-full-docs],
44734
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   159
      [build complete documentation @<:@enabled if all tools found@:>@])])
44727
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   160
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   161
  # Verify dependencies
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   162
  AC_MSG_CHECKING([for graphviz dot])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   163
  if test "x$DOT" != "x"; then
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   164
    AC_MSG_RESULT([yes])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   165
  else
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   166
    AC_MSG_RESULT([no, cannot generate full docs])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   167
    FULL_DOCS_DEP_MISSING=true
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   168
  fi
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   169
44734
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   170
  AC_MSG_CHECKING([for pandoc])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   171
  if test "x$PANDOC" != "x"; then
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   172
    AC_MSG_RESULT([yes])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   173
  else
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   174
    AC_MSG_RESULT([no, cannot generate full docs])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   175
    FULL_DOCS_DEP_MISSING=true
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   176
  fi
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   177
44727
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   178
  AC_MSG_CHECKING([full docs])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   179
  if test "x$enable_full_docs" = xyes; then
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   180
    if test "x$FULL_DOCS_DEP_MISSING" = "xtrue"; then
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   181
      AC_MSG_RESULT([no, missing dependencies])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   182
      HELP_MSG_MISSING_DEPENDENCY([dot])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   183
      AC_MSG_ERROR([Cannot enable full docs with missing dependencies. See above. $HELP_MSG])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   184
    else
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   185
      ENABLE_FULL_DOCS=true
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   186
      AC_MSG_RESULT([yes, forced])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   187
    fi
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   188
  elif test "x$enable_full_docs" = xno; then
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   189
    ENABLE_FULL_DOCS=false
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   190
    AC_MSG_RESULT([no, forced])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   191
  elif test "x$enable_full_docs" = x; then
44734
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   192
    # Check for prerequisites
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   193
    if test "x$FULL_DOCS_DEP_MISSING" = xtrue; then
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   194
      ENABLE_FULL_DOCS=false
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   195
      AC_MSG_RESULT([no, missing dependencies])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   196
    else
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   197
      ENABLE_FULL_DOCS=true
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   198
      AC_MSG_RESULT([yes, dependencies present])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   199
    fi
44727
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   200
  else
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   201
    AC_MSG_ERROR([--enable-full-docs can only take yes or no])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   202
  fi
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   203
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   204
  AC_SUBST(ENABLE_FULL_DOCS)
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   205
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   206
  # Choose cacerts source file
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   207
  AC_ARG_WITH(cacerts-file, [AS_HELP_STRING([--with-cacerts-file],
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   208
      [specify alternative cacerts file])])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   209
  if test "x$with_cacerts_file" != x; then
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   210
    CACERTS_FILE=$with_cacerts_file
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   211
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   212
  AC_SUBST(CACERTS_FILE)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   213
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   214
  # Enable or disable unlimited crypto
42303
57efda72d3ad 8170157: Enable unlimited cryptographic policy by default in OracleJDK
wetmore
parents: 42299
diff changeset
   215
  AC_ARG_ENABLE(unlimited-crypto, [AS_HELP_STRING([--disable-unlimited-crypto],
57efda72d3ad 8170157: Enable unlimited cryptographic policy by default in OracleJDK
wetmore
parents: 42299
diff changeset
   216
      [Disable unlimited crypto policy @<:@enabled@:>@])],,
57efda72d3ad 8170157: Enable unlimited cryptographic policy by default in OracleJDK
wetmore
parents: 42299
diff changeset
   217
      [enable_unlimited_crypto=yes])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   218
  if test "x$enable_unlimited_crypto" = "xyes"; then
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   219
    UNLIMITED_CRYPTO=true
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   220
  else
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   221
    UNLIMITED_CRYPTO=false
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   222
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   223
  AC_SUBST(UNLIMITED_CRYPTO)
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   224
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   225
  # Should we build the serviceability agent (SA)?
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   226
  INCLUDE_SA=true
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   227
  if HOTSPOT_CHECK_JVM_VARIANT(zero) || HOTSPOT_CHECK_JVM_VARIANT(zeroshark); then
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   228
    INCLUDE_SA=false
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   229
  fi
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   230
  if test "x$OPENJDK_TARGET_OS" = xaix ; then
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   231
    INCLUDE_SA=false
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   232
  fi
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   233
  AC_SUBST(INCLUDE_SA)
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   234
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   235
  # Compress jars
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   236
  COMPRESS_JARS=false
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   237
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   238
  AC_SUBST(COMPRESS_JARS)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   239
33926
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   240
  # Setup default copyright year. Mostly overridden when building close to a new year.
27584
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   241
  AC_ARG_WITH(copyright-year, [AS_HELP_STRING([--with-copyright-year],
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   242
      [Set copyright year value for build @<:@current year@:>@])])
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   243
  if test "x$with_copyright_year" = xyes; then
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   244
    AC_MSG_ERROR([Copyright year must have a value])
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   245
  elif test "x$with_copyright_year" != x; then
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   246
    COPYRIGHT_YEAR="$with_copyright_year"
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   247
  else
38843
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 38546
diff changeset
   248
    COPYRIGHT_YEAR=`$DATE +'%Y'`
27584
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   249
  fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   250
  AC_SUBST(COPYRIGHT_YEAR)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   251
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   252
33926
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   253
###############################################################################
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   254
#
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   255
# Enable or disable the elliptic curve crypto implementation
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   256
#
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   257
AC_DEFUN_ONCE([JDKOPT_DETECT_INTREE_EC],
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   258
[
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   259
  AC_MSG_CHECKING([if elliptic curve crypto implementation is present])
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   260
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
   261
  if test -d "${TOPDIR}/src/jdk.crypto.ec/share/native/libsunec/impl"; then
43388
509c3ebb5c97 8004842: Unify values of boolean make variables set in configure to true/false
ihse
parents: 43383
diff changeset
   262
    ENABLE_INTREE_EC=true
33926
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   263
    AC_MSG_RESULT([yes])
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   264
  else
43388
509c3ebb5c97 8004842: Unify values of boolean make variables set in configure to true/false
ihse
parents: 43383
diff changeset
   265
    ENABLE_INTREE_EC=false
33926
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   266
    AC_MSG_RESULT([no])
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   267
  fi
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   268
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   269
  AC_SUBST(ENABLE_INTREE_EC)
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   270
])
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   271
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   272
AC_DEFUN_ONCE([JDKOPT_SETUP_DEBUG_SYMBOLS],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   273
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   274
  #
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   275
  # NATIVE_DEBUG_SYMBOLS
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   276
  # This must be done after the toolchain is setup, since we're looking at objcopy.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   277
  #
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   278
  AC_MSG_CHECKING([what type of native debug symbols to use])
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   279
  AC_ARG_WITH([native-debug-symbols],
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   280
      [AS_HELP_STRING([--with-native-debug-symbols],
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   281
      [set the native debug symbol configuration (none, internal, external, zipped) @<:@varying@:>@])],
34605
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   282
      [
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   283
        if test "x$OPENJDK_TARGET_OS" = xaix; then
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   284
          if test "x$withval" = xexternal || test "x$withval" = xzipped; then
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   285
            AC_MSG_ERROR([AIX only supports the parameters 'none' and 'internal' for --with-native-debug-symbols])
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   286
          fi
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   287
        fi
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   288
      ],
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   289
      [
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   290
        if test "x$OPENJDK_TARGET_OS" = xaix; then
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   291
          # AIX doesn't support 'zipped' so use 'internal' as default
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   292
          with_native_debug_symbols="internal"
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   293
        else
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   294
          if test "x$STATIC_BUILD" = xtrue; then
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   295
            with_native_debug_symbols="none"
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   296
          else
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   297
            with_native_debug_symbols="zipped"
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   298
          fi
34605
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   299
        fi
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   300
      ])
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   301
  NATIVE_DEBUG_SYMBOLS=$with_native_debug_symbols
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   302
  AC_MSG_RESULT([$NATIVE_DEBUG_SYMBOLS])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   303
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   304
  if test "x$NATIVE_DEBUG_SYMBOLS" = xzipped; then
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   305
34495
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   306
    if test "x$OPENJDK_TARGET_OS" = xsolaris || test "x$OPENJDK_TARGET_OS" = xlinux; then
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   307
      if test "x$OBJCOPY" = x; then
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   308
        # enabling of enable-debug-symbols and can't find objcopy
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   309
        # this is an error
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   310
        AC_MSG_ERROR([Unable to find objcopy, cannot enable native debug symbols])
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   311
      fi
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   312
    fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   313
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   314
    COMPILE_WITH_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   315
    COPY_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   316
    ZIP_EXTERNAL_DEBUG_SYMBOLS=true
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   317
  elif test "x$NATIVE_DEBUG_SYMBOLS" = xnone; then
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   318
    COMPILE_WITH_DEBUG_SYMBOLS=false
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   319
    COPY_DEBUG_SYMBOLS=false
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   320
    ZIP_EXTERNAL_DEBUG_SYMBOLS=false
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   321
  elif test "x$NATIVE_DEBUG_SYMBOLS" = xinternal; then
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   322
    COMPILE_WITH_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   323
    COPY_DEBUG_SYMBOLS=false
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   324
    ZIP_EXTERNAL_DEBUG_SYMBOLS=false
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   325
  elif test "x$NATIVE_DEBUG_SYMBOLS" = xexternal; then
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   326
34495
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   327
    if test "x$OPENJDK_TARGET_OS" = xsolaris || test "x$OPENJDK_TARGET_OS" = xlinux; then
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   328
      if test "x$OBJCOPY" = x; then
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   329
        # enabling of enable-debug-symbols and can't find objcopy
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   330
        # this is an error
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   331
        AC_MSG_ERROR([Unable to find objcopy, cannot enable native debug symbols])
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   332
      fi
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   333
    fi
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   334
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   335
    COMPILE_WITH_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   336
    COPY_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   337
    ZIP_EXTERNAL_DEBUG_SYMBOLS=false
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   338
  else
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   339
    AC_MSG_ERROR([Allowed native debug symbols are: none, internal, external, zipped])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   340
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   341
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   342
  # --enable-debug-symbols is deprecated.
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   343
  # Please use --with-native-debug-symbols=[internal,external,zipped] .
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   344
  BASIC_DEPRECATED_ARG_ENABLE(debug-symbols, debug_symbols,
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   345
        [Please use --with-native-debug-symbols=[[internal,external,zipped]] .])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   346
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   347
  # --enable-zip-debug-info is deprecated.
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   348
  # Please use --with-native-debug-symbols=zipped .
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   349
  BASIC_DEPRECATED_ARG_ENABLE(zip-debug-info, zip_debug_info,
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   350
                              [Please use --with-native-debug-symbols=zipped .])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   351
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   352
  AC_SUBST(COMPILE_WITH_DEBUG_SYMBOLS)
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   353
  AC_SUBST(COPY_DEBUG_SYMBOLS)
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   354
  AC_SUBST(ZIP_EXTERNAL_DEBUG_SYMBOLS)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   355
])
29305
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   356
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   357
################################################################################
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   358
#
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   359
# Gcov coverage data for hotspot
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   360
#
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   361
AC_DEFUN_ONCE([JDKOPT_SETUP_CODE_COVERAGE],
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   362
[
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   363
  AC_ARG_ENABLE(native-coverage, [AS_HELP_STRING([--enable-native-coverage],
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   364
      [enable native compilation with code coverage data@<:@disabled@:>@])])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   365
  GCOV_ENABLED="false"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   366
  if test "x$enable_native_coverage" = "xyes"; then
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   367
    if test "x$TOOLCHAIN_TYPE" = "xgcc"; then
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   368
      AC_MSG_CHECKING([if native coverage is enabled])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   369
      AC_MSG_RESULT([yes])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   370
      GCOV_CFLAGS="-fprofile-arcs -ftest-coverage -fno-inline"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   371
      GCOV_LDFLAGS="-fprofile-arcs"
42979
2f9e19a72974 8171922: Hotspot code coverage doesn't seem to work
erikj
parents: 42303
diff changeset
   372
      JVM_CFLAGS="$JVM_CFLAGS $GCOV_CFLAGS"
2f9e19a72974 8171922: Hotspot code coverage doesn't seem to work
erikj
parents: 42303
diff changeset
   373
      JVM_LDFLAGS="$JVM_LDFLAGS $GCOV_LDFLAGS"
29305
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   374
      CFLAGS_JDKLIB="$CFLAGS_JDKLIB $GCOV_CFLAGS"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   375
      CFLAGS_JDKEXE="$CFLAGS_JDKEXE $GCOV_CFLAGS"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   376
      CXXFLAGS_JDKLIB="$CXXFLAGS_JDKLIB $GCOV_CFLAGS"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   377
      CXXFLAGS_JDKEXE="$CXXFLAGS_JDKEXE $GCOV_CFLAGS"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   378
      LDFLAGS_JDKLIB="$LDFLAGS_JDKLIB $GCOV_LDFLAGS"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   379
      LDFLAGS_JDKEXE="$LDFLAGS_JDKEXE $GCOV_LDFLAGS"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   380
      GCOV_ENABLED="true"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   381
    else
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   382
      AC_MSG_ERROR([--enable-native-coverage only works with toolchain type gcc])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   383
    fi
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   384
  elif test "x$enable_native_coverage" = "xno"; then
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   385
    AC_MSG_CHECKING([if native coverage is enabled])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   386
    AC_MSG_RESULT([no])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   387
  elif test "x$enable_native_coverage" != "x"; then
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   388
    AC_MSG_ERROR([--enable-native-coverage can only be assigned "yes" or "no"])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   389
  fi
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   390
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   391
  AC_SUBST(GCOV_ENABLED)
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   392
])
33562
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   393
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   394
################################################################################
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   395
#
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   396
# Static build support.  When enabled will generate static
33562
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   397
# libraries instead of shared libraries for all JDK libs.
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   398
#
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   399
AC_DEFUN_ONCE([JDKOPT_SETUP_STATIC_BUILD],
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   400
[
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   401
  AC_ARG_ENABLE([static-build], [AS_HELP_STRING([--enable-static-build],
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   402
    [enable static library build @<:@disabled@:>@])])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   403
  STATIC_BUILD=false
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   404
  if test "x$enable_static_build" = "xyes"; then
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   405
    AC_MSG_CHECKING([if static build is enabled])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   406
    AC_MSG_RESULT([yes])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   407
    if test "x$OPENJDK_TARGET_OS" != "xmacosx"; then
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   408
      AC_MSG_ERROR([--enable-static-build is only supported for macosx builds])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   409
    fi
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   410
    STATIC_BUILD_CFLAGS="-DSTATIC_BUILD=1"
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   411
    CFLAGS_JDKLIB_EXTRA="$CFLAGS_JDKLIB_EXTRA $STATIC_BUILD_CFLAGS"
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   412
    CXXFLAGS_JDKLIB_EXTRA="$CXXFLAGS_JDKLIB_EXTRA $STATIC_BUILD_CFLAGS"
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   413
    STATIC_BUILD=true
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   414
  elif test "x$enable_static_build" = "xno"; then
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   415
    AC_MSG_CHECKING([if static build is enabled])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   416
    AC_MSG_RESULT([no])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   417
  elif test "x$enable_static_build" != "x"; then
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   418
    AC_MSG_ERROR([--enable-static-build can only be assigned "yes" or "no"])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   419
  fi
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   420
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   421
  AC_SUBST(STATIC_BUILD)
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   422
])
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   423
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   424
################################################################################
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   425
#
37035
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   426
# jlink options.
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   427
# We always keep packaged modules in JDK image.
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   428
#
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   429
AC_DEFUN_ONCE([JDKOPT_SETUP_JLINK_OPTIONS],
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   430
[
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   431
  AC_ARG_ENABLE([keep-packaged-modules], [AS_HELP_STRING([--disable-keep-packaged-modules],
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   432
    [Do not keep packaged modules in jdk image @<:@enable@:>@])])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   433
43046
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42979
diff changeset
   434
  AC_MSG_CHECKING([if packaged modules are kept])
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   435
  if test "x$enable_keep_packaged_modules" = "xyes"; then
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   436
    AC_MSG_RESULT([yes])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   437
    JLINK_KEEP_PACKAGED_MODULES=true
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   438
  elif test "x$enable_keep_packaged_modules" = "xno"; then
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   439
    AC_MSG_RESULT([no])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   440
    JLINK_KEEP_PACKAGED_MODULES=false
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   441
  elif test "x$enable_keep_packaged_modules" = "x"; then
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   442
    AC_MSG_RESULT([yes (default)])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   443
    JLINK_KEEP_PACKAGED_MODULES=true
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   444
  else
43046
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42979
diff changeset
   445
    AC_MSG_RESULT([error])
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   446
    AC_MSG_ERROR([--enable-keep-packaged-modules accepts no argument])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   447
  fi
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   448
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   449
  AC_SUBST(JLINK_KEEP_PACKAGED_MODULES)
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   450
])
37035
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   451
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   452
################################################################################
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   453
#
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   454
# Check if building of the jtreg failure handler should be enabled.
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   455
#
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   456
AC_DEFUN_ONCE([JDKOPT_ENABLE_DISABLE_FAILURE_HANDLER],
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   457
[
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   458
  AC_ARG_ENABLE([jtreg-failure-handler], [AS_HELP_STRING([--enable-jtreg-failure-handler],
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   459
    [forces build of the jtreg failure handler to be enabled, missing dependencies
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   460
     become fatal errors. Default is auto, where the failure handler is built if all
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   461
     dependencies are present and otherwise just disabled.])])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   462
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   463
  AC_MSG_CHECKING([if jtreg failure handler should be built])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   464
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   465
  if test "x$enable_jtreg_failure_handler" = "xyes"; then
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   466
    if test "x$JT_HOME" = "x"; then
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   467
      AC_MSG_ERROR([Cannot enable jtreg failure handler without jtreg.])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   468
    else
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   469
      BUILD_FAILURE_HANDLER=true
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   470
      AC_MSG_RESULT([yes, forced])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   471
    fi
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   472
  elif test "x$enable_jtreg_failure_handler" = "xno"; then
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   473
    BUILD_FAILURE_HANDLER=false
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   474
    AC_MSG_RESULT([no, forced])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   475
  elif test "x$enable_jtreg_failure_handler" = "xauto" \
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   476
      || test "x$enable_jtreg_failure_handler" = "x"; then
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   477
    if test "x$JT_HOME" = "x"; then
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   478
      BUILD_FAILURE_HANDLER=false
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   479
      AC_MSG_RESULT([no, missing jtreg])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   480
    else
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   481
      BUILD_FAILURE_HANDLER=true
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   482
      AC_MSG_RESULT([yes, jtreg present])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   483
    fi
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   484
  else
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   485
    AC_MSG_ERROR([Invalid value for --enable-jtreg-failure-handler: $enable_jtreg_failure_handler])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   486
  fi
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   487
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   488
  AC_SUBST(BUILD_FAILURE_HANDLER)
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   489
])
38546
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   490
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   491
################################################################################
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   492
#
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   493
# Enable or disable generation of the classlist at build time
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   494
#
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   495
AC_DEFUN_ONCE([JDKOPT_ENABLE_DISABLE_GENERATE_CLASSLIST],
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   496
[
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   497
  AC_ARG_ENABLE([generate-classlist], [AS_HELP_STRING([--disable-generate-classlist],
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   498
      [forces enabling or disabling of the generation of a CDS classlist at build time.
47060
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 44734
diff changeset
   499
      Default is to generate it when either the server or client JVMs are built and
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 44734
diff changeset
   500
      enable-cds is true.])])
38546
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   501
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   502
  # Check if it's likely that it's possible to generate the classlist. Depending
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   503
  # on exact jvm configuration it could be possible anyway.
47060
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 44734
diff changeset
   504
  if test "x$ENABLE_CDS" = "xtrue" && (HOTSPOT_CHECK_JVM_VARIANT(server) || HOTSPOT_CHECK_JVM_VARIANT(client)); then
38546
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   505
    ENABLE_GENERATE_CLASSLIST_POSSIBLE="true"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   506
  else
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   507
    ENABLE_GENERATE_CLASSLIST_POSSIBLE="false"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   508
  fi
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   509
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   510
  AC_MSG_CHECKING([if the CDS classlist generation should be enabled])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   511
  if test "x$enable_generate_classlist" = "xyes"; then
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   512
    AC_MSG_RESULT([yes, forced])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   513
    ENABLE_GENERATE_CLASSLIST="true"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   514
    if test "x$ENABLE_GENERATE_CLASSLIST_POSSIBLE" = "xfalse"; then
47060
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 44734
diff changeset
   515
      AC_MSG_WARN([Generation of classlist might not be possible with JVM Variants $JVM_VARIANTS and enable-cds=$ENABLE_CDS])
38546
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   516
    fi
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   517
  elif test "x$enable_generate_classlist" = "xno"; then
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   518
    AC_MSG_RESULT([no, forced])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   519
    ENABLE_GENERATE_CLASSLIST="false"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   520
  elif test "x$enable_generate_classlist" = "x"; then
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   521
    if test "x$ENABLE_GENERATE_CLASSLIST_POSSIBLE" = "xtrue"; then
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   522
      AC_MSG_RESULT([yes])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   523
      ENABLE_GENERATE_CLASSLIST="true"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   524
    else
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   525
      AC_MSG_RESULT([no])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   526
      ENABLE_GENERATE_CLASSLIST="false"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   527
    fi
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   528
  else
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   529
    AC_MSG_ERROR([Invalid value for --enable-generate-classlist: $enable_generate_classlist])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   530
  fi
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   531
43383
5e74f3dd4656 8173107: Fix autoconf/spec.gmk mismatches
ihse
parents: 43046
diff changeset
   532
  AC_SUBST(ENABLE_GENERATE_CLASSLIST)
38546
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   533
])