make/autoconf/jdk-options.m4
author rhalade
Wed, 09 Oct 2019 12:21:28 -0700
changeset 58524 e84d8379815b
parent 54516 5b1ad4cbe59e
child 58748 6e287efa5fa3
permissions -rw-r--r--
8231887: ComodoCA.java fails because certificate was revoked Reviewed-by: mullan, clanger
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
#
53833
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
     2
# Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     4
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    10
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    15
# accompanied this code).
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    16
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    20
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    23
# questions.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    24
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    25
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
[
51824
9777d724ace8 8210962: Deprecate jdk-variant
ihse
parents: 51586
diff changeset
    36
  # Deprecated in JDK 12
9777d724ace8 8210962: Deprecate jdk-variant
ihse
parents: 51586
diff changeset
    37
  BASIC_DEPRECATED_ARG_WITH([jdk-variant])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    38
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    39
22460
0273c023680c 8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents: 17819
diff changeset
    40
###############################################################################
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    41
# Set the debug level
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    42
#    release: no debug information, all optimizations, no asserts.
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    43
#    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
    44
#    fastdebug: debug information (-g), all optimizations, all asserts
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    45
#    slowdebug: debug information (-g), no optimizations, all asserts
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    46
AC_DEFUN_ONCE([JDKOPT_SETUP_DEBUG_LEVEL],
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
  DEBUG_LEVEL="release"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    49
  AC_MSG_CHECKING([which debug level to use])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    50
  AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    51
      [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
    52
      [
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    53
        ENABLE_DEBUG="${enableval}"
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    54
        DEBUG_LEVEL="fastdebug"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    55
      ], [ENABLE_DEBUG="no"])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    56
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    57
  AC_ARG_WITH([debug-level], [AS_HELP_STRING([--with-debug-level],
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
    58
      [set the debug level (release, fastdebug, slowdebug, optimized) @<:@release@:>@])],
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    59
      [
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    60
        DEBUG_LEVEL="${withval}"
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    61
        if test "x$ENABLE_DEBUG" = xyes; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    62
          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
    63
        fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    64
      ])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    65
  AC_MSG_RESULT([$DEBUG_LEVEL])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    66
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    67
  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
    68
      test "x$DEBUG_LEVEL" != xoptimized && \
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    69
      test "x$DEBUG_LEVEL" != xfastdebug && \
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    70
      test "x$DEBUG_LEVEL" != xslowdebug; then
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
    71
    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
    72
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    73
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    74
  # Translate DEBUG_LEVEL to debug level used by Hotspot
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    75
  HOTSPOT_DEBUG_LEVEL="$DEBUG_LEVEL"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    76
  if test "x$DEBUG_LEVEL" = xrelease; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    77
    HOTSPOT_DEBUG_LEVEL="product"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    78
  elif test "x$DEBUG_LEVEL" = xslowdebug; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    79
    HOTSPOT_DEBUG_LEVEL="debug"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    80
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    81
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    82
  if test "x$DEBUG_LEVEL" = xoptimized; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    83
    # 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
    84
    # applicable to the HotSpot build where it means to build a completely
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    85
    # optimized version of the VM without any debugging code (like for the
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    86
    # 'release' debug level which is called 'product' in the HotSpot build) but
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    87
    # with the exception that it can contain additional code which is otherwise
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    88
    # protected by '#ifndef PRODUCT' macros. These 'optimized' builds are used to
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    89
    # test new and/or experimental features which are not intended for customer
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    90
    # shipment. Because these new features need to be tested and benchmarked in
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    91
    # 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
    92
    # debug level.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    93
    DEBUG_LEVEL="release"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    94
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    95
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    96
  AC_SUBST(HOTSPOT_DEBUG_LEVEL)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
    97
  AC_SUBST(DEBUG_LEVEL)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    98
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    99
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   100
###############################################################################
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   101
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   102
# 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
   103
#
15069
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   104
AC_DEFUN_ONCE([JDKOPT_SETUP_OPEN_OR_CUSTOM],
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   105
[
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   106
  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
   107
      [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
   108
39384
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 38843
diff changeset
   109
  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
   110
  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
   111
  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
   112
    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
   113
  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
   114
    SUPPRESS_CUSTOM_EXTENSIONS="false"
15069
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   115
  else
39384
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 38843
diff changeset
   116
    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
   117
  fi
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   118
])
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   119
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   120
AC_DEFUN_ONCE([JDKOPT_SETUP_JDK_OPTIONS],
c6dab988d808 8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents: 15067
diff changeset
   121
[
41046
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   122
  # Should we build a JDK without a graphical UI?
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   123
  AC_MSG_CHECKING([headless only])
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   124
  AC_ARG_ENABLE([headless-only], [AS_HELP_STRING([--enable-headless-only],
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   125
      [only build headless (no GUI) support @<:@disabled@:>@])])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   126
41046
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   127
  if test "x$enable_headless_only" = "xyes"; then
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   128
    ENABLE_HEADLESS_ONLY="true"
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   129
    AC_MSG_RESULT([yes])
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   130
  elif test "x$enable_headless_only" = "xno"; then
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   131
    ENABLE_HEADLESS_ONLY="false"
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   132
    AC_MSG_RESULT([no])
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   133
  elif test "x$enable_headless_only" = "x"; then
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   134
    ENABLE_HEADLESS_ONLY="false"
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   135
    AC_MSG_RESULT([no])
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   136
  else
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   137
    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
   138
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   139
41046
bee72dd4067b 8163102: Fix headless only configuration option
erikj
parents: 39384
diff changeset
   140
  AC_SUBST(ENABLE_HEADLESS_ONLY)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   141
44727
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   142
  # Should we build the complete docs, or just a lightweight version?
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   143
  AC_ARG_ENABLE([full-docs], [AS_HELP_STRING([--enable-full-docs],
44734
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   144
      [build complete documentation @<:@enabled if all tools found@:>@])])
44727
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   145
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   146
  # Verify dependencies
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   147
  AC_MSG_CHECKING([for graphviz dot])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   148
  if test "x$DOT" != "x"; then
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   149
    AC_MSG_RESULT([yes])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   150
  else
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   151
    AC_MSG_RESULT([no, cannot generate full docs])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   152
    FULL_DOCS_DEP_MISSING=true
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   153
  fi
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   154
44734
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   155
  AC_MSG_CHECKING([for pandoc])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   156
  if test "x$PANDOC" != "x"; then
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   157
    AC_MSG_RESULT([yes])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   158
  else
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   159
    AC_MSG_RESULT([no, cannot generate full docs])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   160
    FULL_DOCS_DEP_MISSING=true
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   161
  fi
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   162
44727
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   163
  AC_MSG_CHECKING([full docs])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   164
  if test "x$enable_full_docs" = xyes; then
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   165
    if test "x$FULL_DOCS_DEP_MISSING" = "xtrue"; then
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   166
      AC_MSG_RESULT([no, missing dependencies])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   167
      HELP_MSG_MISSING_DEPENDENCY([dot])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   168
      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
   169
    else
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   170
      ENABLE_FULL_DOCS=true
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   171
      AC_MSG_RESULT([yes, forced])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   172
    fi
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   173
  elif test "x$enable_full_docs" = xno; then
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   174
    ENABLE_FULL_DOCS=false
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   175
    AC_MSG_RESULT([no, forced])
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   176
  elif test "x$enable_full_docs" = x; then
44734
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   177
    # Check for prerequisites
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   178
    if test "x$FULL_DOCS_DEP_MISSING" = xtrue; then
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   179
      ENABLE_FULL_DOCS=false
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   180
      AC_MSG_RESULT([no, missing dependencies])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   181
    else
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   182
      ENABLE_FULL_DOCS=true
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   183
      AC_MSG_RESULT([yes, dependencies present])
70bbd6884287 8179022: Add serialization spec as markdown
ihse
parents: 44727
diff changeset
   184
    fi
44727
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   185
  else
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   186
    AC_MSG_ERROR([--enable-full-docs can only take yes or no])
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
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   189
  AC_SUBST(ENABLE_FULL_DOCS)
ca162fc20601 8178965: Second part of JDK-8176785
ihse
parents: 43388
diff changeset
   190
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   191
  # Choose cacerts source file
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   192
  AC_ARG_WITH(cacerts-file, [AS_HELP_STRING([--with-cacerts-file],
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   193
      [specify alternative cacerts file])])
47255
181dc03e0be7 8176467: --with-cacerts-file should fail during configure if file does not exist
ihse
parents: 47217
diff changeset
   194
  AC_MSG_CHECKING([for cacerts file])
181dc03e0be7 8176467: --with-cacerts-file should fail during configure if file does not exist
ihse
parents: 47217
diff changeset
   195
  if test "x$with_cacerts_file" == x; then
181dc03e0be7 8176467: --with-cacerts-file should fail during configure if file does not exist
ihse
parents: 47217
diff changeset
   196
    AC_MSG_RESULT([default])
181dc03e0be7 8176467: --with-cacerts-file should fail during configure if file does not exist
ihse
parents: 47217
diff changeset
   197
  else
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   198
    CACERTS_FILE=$with_cacerts_file
47255
181dc03e0be7 8176467: --with-cacerts-file should fail during configure if file does not exist
ihse
parents: 47217
diff changeset
   199
    if test ! -f "$CACERTS_FILE"; then
181dc03e0be7 8176467: --with-cacerts-file should fail during configure if file does not exist
ihse
parents: 47217
diff changeset
   200
      AC_MSG_RESULT([fail])
181dc03e0be7 8176467: --with-cacerts-file should fail during configure if file does not exist
ihse
parents: 47217
diff changeset
   201
      AC_MSG_ERROR([Specified cacerts file "$CACERTS_FILE" does not exist])
181dc03e0be7 8176467: --with-cacerts-file should fail during configure if file does not exist
ihse
parents: 47217
diff changeset
   202
    fi
181dc03e0be7 8176467: --with-cacerts-file should fail during configure if file does not exist
ihse
parents: 47217
diff changeset
   203
    AC_MSG_RESULT([$CACERTS_FILE])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   204
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   205
  AC_SUBST(CACERTS_FILE)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   206
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   207
  # Enable or disable unlimited crypto
42303
57efda72d3ad 8170157: Enable unlimited cryptographic policy by default in OracleJDK
wetmore
parents: 42299
diff changeset
   208
  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
   209
      [Disable unlimited crypto policy @<:@enabled@:>@])],,
57efda72d3ad 8170157: Enable unlimited cryptographic policy by default in OracleJDK
wetmore
parents: 42299
diff changeset
   210
      [enable_unlimited_crypto=yes])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   211
  if test "x$enable_unlimited_crypto" = "xyes"; then
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   212
    UNLIMITED_CRYPTO=true
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   213
  else
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   214
    UNLIMITED_CRYPTO=false
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   215
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   216
  AC_SUBST(UNLIMITED_CRYPTO)
14112
1b447f5cb0d1 8001897: build-infra: misc adjustments to configure script
ihse
parents: 14111
diff changeset
   217
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   218
  # Should we build the serviceability agent (SA)?
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   219
  INCLUDE_SA=true
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47255
diff changeset
   220
  if HOTSPOT_CHECK_JVM_VARIANT(zero); then
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   221
    INCLUDE_SA=false
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   222
  fi
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   223
  if test "x$OPENJDK_TARGET_OS" = xaix ; then
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   224
    INCLUDE_SA=false
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   225
  fi
49920
dbfef18ad510 8202200: set INCLUDE_SA to false on s390x by default
mbaesken
parents: 47933
diff changeset
   226
  if test "x$OPENJDK_TARGET_CPU" = xs390x ; then
dbfef18ad510 8202200: set INCLUDE_SA to false on s390x by default
mbaesken
parents: 47933
diff changeset
   227
    INCLUDE_SA=false
dbfef18ad510 8202200: set INCLUDE_SA to false on s390x by default
mbaesken
parents: 47933
diff changeset
   228
  fi
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   229
  AC_SUBST(INCLUDE_SA)
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   230
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   231
  # Compress jars
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   232
  COMPRESS_JARS=false
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   233
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   234
  AC_SUBST(COMPRESS_JARS)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   235
33926
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   236
  # 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
   237
  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
   238
      [Set copyright year value for build @<:@current year@:>@])])
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   239
  if test "x$with_copyright_year" = xyes; then
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   240
    AC_MSG_ERROR([Copyright year must have a value])
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   241
  elif test "x$with_copyright_year" != x; then
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   242
    COPYRIGHT_YEAR="$with_copyright_year"
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   243
  else
38843
2b141e8e916f 8158535: Configure script uses basic tools directly in many places
erikj
parents: 38546
diff changeset
   244
    COPYRIGHT_YEAR=`$DATE +'%Y'`
27584
01a719b65d1e 8065183: Add --with-copyright-year option to configure
erikj
parents: 27133
diff changeset
   245
  fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   246
  AC_SUBST(COPYRIGHT_YEAR)
52734
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   247
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   248
  # Override default library path
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   249
  AC_ARG_WITH([jni-libpath], [AS_HELP_STRING([--with-jni-libpath],
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   250
      [override default JNI library search path])])
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   251
  AC_MSG_CHECKING([for jni library path])
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   252
  if test "x${with_jni_libpath}" = "x" || test "x${with_jni_libpath}" = "xno"; then
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   253
    AC_MSG_RESULT([default])
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   254
  elif test "x${with_jni_libpath}" = "xyes"; then
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   255
    AC_MSG_RESULT([invalid])
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   256
    AC_MSG_ERROR([The --with-jni-libpath option requires an argument.])
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   257
  else
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   258
    HOTSPOT_OVERRIDE_LIBPATH=${with_jni_libpath}
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   259
    if test "x$OPENJDK_TARGET_OS" != "xlinux" &&
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   260
         test "x$OPENJDK_TARGET_OS" != "xbsd" &&
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   261
         test "x$OPENJDK_TARGET_OS" != "xaix"; then
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   262
      AC_MSG_RESULT([fail])
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   263
      AC_MSG_ERROR([Overriding JNI library path is supported only on Linux, BSD and AIX.])
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   264
    fi
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   265
    AC_MSG_RESULT(${HOTSPOT_OVERRIDE_LIBPATH})
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   266
  fi
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   267
  AC_SUBST(HOTSPOT_OVERRIDE_LIBPATH)
d537553ed639 8214332: Add a flag for overriding default JNI library search path
dholmes
parents: 52714
diff changeset
   268
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   269
])
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   270
33926
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   271
###############################################################################
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   272
#
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   273
# Enable or disable the elliptic curve crypto implementation
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   274
#
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   275
AC_DEFUN_ONCE([JDKOPT_DETECT_INTREE_EC],
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   276
[
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   277
  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
   278
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
   279
  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
   280
    ENABLE_INTREE_EC=true
33926
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   281
    AC_MSG_RESULT([yes])
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   282
  else
43388
509c3ebb5c97 8004842: Unify values of boolean make variables set in configure to true/false
ihse
parents: 43383
diff changeset
   283
    ENABLE_INTREE_EC=false
33926
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   284
    AC_MSG_RESULT([no])
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   285
  fi
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   286
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   287
  AC_SUBST(ENABLE_INTREE_EC)
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   288
])
3a19edba4808 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 29305
diff changeset
   289
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   290
AC_DEFUN_ONCE([JDKOPT_SETUP_DEBUG_SYMBOLS],
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   291
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   292
  #
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   293
  # NATIVE_DEBUG_SYMBOLS
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   294
  # 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
   295
  #
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   296
  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
   297
  AC_ARG_WITH([native-debug-symbols],
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   298
      [AS_HELP_STRING([--with-native-debug-symbols],
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   299
      [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
   300
      [
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   301
        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
   302
          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
   303
            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
   304
          fi
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   305
        fi
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   306
      ],
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   307
      [
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   308
        if test "x$OPENJDK_TARGET_OS" = xaix; then
47933
19122c10fc52 8191205: Set native-debug-symbols default to "external"
ihse
parents: 47701
diff changeset
   309
          # AIX doesn't support 'external' so use 'internal' as default
34605
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   310
          with_native_debug_symbols="internal"
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   311
        else
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   312
          if test "x$STATIC_BUILD" = xtrue; then
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   313
            with_native_debug_symbols="none"
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   314
          else
47933
19122c10fc52 8191205: Set native-debug-symbols default to "external"
ihse
parents: 47701
diff changeset
   315
            with_native_debug_symbols="external"
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   316
          fi
34605
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   317
        fi
60c12f0860d6 8145560: AIX: change '8036003: Add --with-debug-symbols' broke AIX build
simonis
parents: 34596
diff changeset
   318
      ])
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   319
  NATIVE_DEBUG_SYMBOLS=$with_native_debug_symbols
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   320
  AC_MSG_RESULT([$NATIVE_DEBUG_SYMBOLS])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   321
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   322
  if test "x$NATIVE_DEBUG_SYMBOLS" = xzipped; then
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   323
34495
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   324
    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
   325
      if test "x$OBJCOPY" = x; then
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   326
        # enabling of enable-debug-symbols and can't find objcopy
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   327
        # this is an error
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   328
        AC_MSG_ERROR([Unable to find objcopy, cannot enable native debug symbols])
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   329
      fi
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   330
    fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   331
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   332
    COMPILE_WITH_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   333
    COPY_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   334
    ZIP_EXTERNAL_DEBUG_SYMBOLS=true
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   335
  elif test "x$NATIVE_DEBUG_SYMBOLS" = xnone; then
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   336
    COMPILE_WITH_DEBUG_SYMBOLS=false
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   337
    COPY_DEBUG_SYMBOLS=false
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   338
    ZIP_EXTERNAL_DEBUG_SYMBOLS=false
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   339
  elif test "x$NATIVE_DEBUG_SYMBOLS" = xinternal; then
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   340
    COMPILE_WITH_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   341
    COPY_DEBUG_SYMBOLS=false
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   342
    ZIP_EXTERNAL_DEBUG_SYMBOLS=false
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   343
  elif test "x$NATIVE_DEBUG_SYMBOLS" = xexternal; then
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   344
34495
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   345
    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
   346
      if test "x$OBJCOPY" = x; then
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   347
        # enabling of enable-debug-symbols and can't find objcopy
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   348
        # this is an error
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   349
        AC_MSG_ERROR([Unable to find objcopy, cannot enable native debug symbols])
b8008470cbd0 8145206: Configure broken on Macosx
erikj
parents: 34493
diff changeset
   350
      fi
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   351
    fi
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   352
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   353
    COMPILE_WITH_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   354
    COPY_DEBUG_SYMBOLS=true
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   355
    ZIP_EXTERNAL_DEBUG_SYMBOLS=false
34493
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   356
  else
c68e0ab807d8 8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents: 33954
diff changeset
   357
    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
   358
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   359
35032
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   360
  AC_SUBST(COMPILE_WITH_DEBUG_SYMBOLS)
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   361
  AC_SUBST(COPY_DEBUG_SYMBOLS)
c2f315819691 8145596: Enable debug symbols for all libraries
ihse
parents: 35014
diff changeset
   362
  AC_SUBST(ZIP_EXTERNAL_DEBUG_SYMBOLS)
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   363
])
29305
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   364
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   365
################################################################################
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   366
#
53857
7a034b1de98b 8219395: integrate gcov w/ run-test
iignatyev
parents: 53833
diff changeset
   367
# Native and Java code coverage
29305
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   368
#
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   369
AC_DEFUN_ONCE([JDKOPT_SETUP_CODE_COVERAGE],
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   370
[
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   371
  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
   372
      [enable native compilation with code coverage data@<:@disabled@:>@])])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   373
  GCOV_ENABLED="false"
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   374
  if test "x$enable_native_coverage" = "xyes"; then
53833
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   375
    case $TOOLCHAIN_TYPE in
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   376
      gcc | clang)
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   377
        AC_MSG_CHECKING([if native coverage is enabled])
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   378
        AC_MSG_RESULT([yes])
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   379
        GCOV_CFLAGS="-fprofile-arcs -ftest-coverage -fno-inline"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   380
        GCOV_LDFLAGS="-fprofile-arcs"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   381
        JVM_CFLAGS="$JVM_CFLAGS $GCOV_CFLAGS"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   382
        JVM_LDFLAGS="$JVM_LDFLAGS $GCOV_LDFLAGS"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   383
        CFLAGS_JDKLIB="$CFLAGS_JDKLIB $GCOV_CFLAGS"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   384
        CFLAGS_JDKEXE="$CFLAGS_JDKEXE $GCOV_CFLAGS"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   385
        CXXFLAGS_JDKLIB="$CXXFLAGS_JDKLIB $GCOV_CFLAGS"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   386
        CXXFLAGS_JDKEXE="$CXXFLAGS_JDKEXE $GCOV_CFLAGS"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   387
        LDFLAGS_JDKLIB="$LDFLAGS_JDKLIB $GCOV_LDFLAGS"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   388
        LDFLAGS_JDKEXE="$LDFLAGS_JDKEXE $GCOV_LDFLAGS"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   389
        GCOV_ENABLED="true"
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   390
        ;;
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   391
      *)
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   392
        AC_MSG_ERROR([--enable-native-coverage only works with toolchain type gcc or clang])
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   393
        ;;
45e6ec6fa679 8219391: extend gcov support to llvm/clang
iignatyev
parents: 52774
diff changeset
   394
    esac
29305
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   395
  elif test "x$enable_native_coverage" = "xno"; then
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   396
    AC_MSG_CHECKING([if native coverage is enabled])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   397
    AC_MSG_RESULT([no])
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   398
  elif test "x$enable_native_coverage" != "x"; then
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   399
    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
   400
  fi
52774
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   401
  AC_SUBST(GCOV_ENABLED)
29305
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   402
52774
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   403
  AC_ARG_WITH(jcov, [AS_HELP_STRING([--with-jcov],
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   404
      [jcov library location])])
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   405
  AC_ARG_WITH(jcov-input-jdk, [AS_HELP_STRING([--with-jcov-input-jdk],
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   406
      [jdk image to instrument])])
54516
5b1ad4cbe59e 8221857: Collect code coverage for a subset of code
shurailine
parents: 53857
diff changeset
   407
  AC_ARG_WITH(jcov-filters, [AS_HELP_STRING([--with-jcov-filters],
5b1ad4cbe59e 8221857: Collect code coverage for a subset of code
shurailine
parents: 53857
diff changeset
   408
      [filters to limit code for jcov instrumentation and report generation])])
52774
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   409
  JCOV_HOME=
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   410
  JCOV_INPUT_JDK=
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   411
  JCOV_ENABLED=
54516
5b1ad4cbe59e 8221857: Collect code coverage for a subset of code
shurailine
parents: 53857
diff changeset
   412
  JCOV_FILTERS=
52774
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   413
  if test "x$with_jcov" = "x" ; then
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   414
    JCOV_ENABLED="false"
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   415
  else
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   416
    JCOV_HOME="$with_jcov"
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   417
    if test ! -f "$JCOV_HOME/lib/jcov.jar"; then
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   418
      AC_MSG_RESULT([fail])
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   419
      AC_MSG_ERROR([Invalid JCov bundle: "$JCOV_HOME/lib/jcov.jar" does not exist])
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   420
    fi
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   421
    JCOV_ENABLED="true"
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   422
    BASIC_FIXUP_PATH(JCOV_HOME)
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   423
    if test "x$with_jcov_input_jdk" != "x" ; then
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   424
      JCOV_INPUT_JDK="$with_jcov_input_jdk"
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   425
      if test ! -f "$JCOV_INPUT_JDK/bin/java$EXE_SUFFIX"; then
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   426
        AC_MSG_RESULT([fail])
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   427
        AC_MSG_ERROR([Invalid JDK bundle: "$JCOV_INPUT_JDK/bin/java$EXE_SUFFIX" does not exist])
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   428
      fi
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   429
      BASIC_FIXUP_PATH(JCOV_INPUT_JDK)
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   430
    fi
54516
5b1ad4cbe59e 8221857: Collect code coverage for a subset of code
shurailine
parents: 53857
diff changeset
   431
    if test "x$with_jcov_filters" != "x" ; then
5b1ad4cbe59e 8221857: Collect code coverage for a subset of code
shurailine
parents: 53857
diff changeset
   432
      JCOV_FILTERS="$with_jcov_filters"
5b1ad4cbe59e 8221857: Collect code coverage for a subset of code
shurailine
parents: 53857
diff changeset
   433
    fi
52774
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   434
  fi
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   435
  AC_SUBST(JCOV_ENABLED)
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   436
  AC_SUBST(JCOV_HOME)
56ca125c973b 8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents: 52734
diff changeset
   437
  AC_SUBST(JCOV_INPUT_JDK)
54516
5b1ad4cbe59e 8221857: Collect code coverage for a subset of code
shurailine
parents: 53857
diff changeset
   438
  AC_SUBST(JCOV_FILTERS)
29305
4ddc6faf7842 8073021: add native code coverage target into makefiles
erikj
parents: 29162
diff changeset
   439
])
33562
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   440
47479
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   441
###############################################################################
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   442
#
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   443
# AddressSanitizer
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   444
#
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   445
AC_DEFUN_ONCE([JDKOPT_SETUP_ADDRESS_SANITIZER],
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   446
[
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   447
  AC_ARG_ENABLE(asan, [AS_HELP_STRING([--enable-asan],
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   448
      [enable AddressSanitizer if possible @<:@disabled@:>@])])
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   449
  ASAN_ENABLED="no"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   450
  if test "x$enable_asan" = "xyes"; then
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   451
    case $TOOLCHAIN_TYPE in
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   452
      gcc | clang)
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   453
        AC_MSG_CHECKING([if asan is enabled])
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   454
        AC_MSG_RESULT([yes])
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   455
        ASAN_CFLAGS="-fsanitize=address -fno-omit-frame-pointer"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   456
        ASAN_LDFLAGS="-fsanitize=address"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   457
        JVM_CFLAGS="$JVM_CFLAGS $ASAN_CFLAGS"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   458
        JVM_LDFLAGS="$JVM_LDFLAGS $ASAN_LDFLAGS"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   459
        CFLAGS_JDKLIB="$CFLAGS_JDKLIB $ASAN_CFLAGS"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   460
        CFLAGS_JDKEXE="$CFLAGS_JDKEXE $ASAN_CFLAGS"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   461
        CXXFLAGS_JDKLIB="$CXXFLAGS_JDKLIB $ASAN_CFLAGS"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   462
        CXXFLAGS_JDKEXE="$CXXFLAGS_JDKEXE $ASAN_CFLAGS"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   463
        LDFLAGS_JDKLIB="$LDFLAGS_JDKLIB $ASAN_LDFLAGS"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   464
        LDFLAGS_JDKEXE="$LDFLAGS_JDKEXE $ASAN_LDFLAGS"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   465
        ASAN_ENABLED="yes"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   466
        ;;
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   467
      *)
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   468
        AC_MSG_ERROR([--enable-asan only works with toolchain type gcc or clang])
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   469
        ;;
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   470
    esac
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   471
  elif test "x$enable_asan" = "xno"; then
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   472
    AC_MSG_CHECKING([if asan is enabled])
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   473
    AC_MSG_RESULT([no])
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   474
  elif test "x$enable_asan" != "x"; then
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   475
    AC_MSG_ERROR([--enable-asan can only be assigned "yes" or "no"])
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   476
  fi
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   477
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   478
  AC_SUBST(ASAN_ENABLED)
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   479
])
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47255
diff changeset
   480
33562
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   481
################################################################################
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   482
#
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35032
diff changeset
   483
# 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
   484
# 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
   485
#
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   486
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
   487
[
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   488
  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
   489
    [enable static library build @<:@disabled@:>@])])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   490
  STATIC_BUILD=false
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   491
  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
   492
    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
   493
    AC_MSG_RESULT([yes])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   494
    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
   495
      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
   496
    fi
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   497
    STATIC_BUILD_CFLAGS="-DSTATIC_BUILD=1"
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   498
    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
   499
    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
   500
    STATIC_BUILD=true
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   501
  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
   502
    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
   503
    AC_MSG_RESULT([no])
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   504
  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
   505
    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
   506
  fi
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   507
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   508
  AC_SUBST(STATIC_BUILD)
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32554
diff changeset
   509
])
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   510
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   511
################################################################################
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   512
#
37035
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   513
# jlink options.
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   514
# We always keep packaged modules in JDK image.
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   515
#
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   516
AC_DEFUN_ONCE([JDKOPT_SETUP_JLINK_OPTIONS],
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   517
[
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   518
  AC_ARG_ENABLE([keep-packaged-modules], [AS_HELP_STRING([--disable-keep-packaged-modules],
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   519
    [Do not keep packaged modules in jdk image @<:@enable@:>@])])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   520
43046
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42979
diff changeset
   521
  AC_MSG_CHECKING([if packaged modules are kept])
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   522
  if test "x$enable_keep_packaged_modules" = "xyes"; then
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   523
    AC_MSG_RESULT([yes])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   524
    JLINK_KEEP_PACKAGED_MODULES=true
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   525
  elif test "x$enable_keep_packaged_modules" = "xno"; then
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   526
    AC_MSG_RESULT([no])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   527
    JLINK_KEEP_PACKAGED_MODULES=false
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   528
  elif test "x$enable_keep_packaged_modules" = "x"; then
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   529
    AC_MSG_RESULT([yes (default)])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   530
    JLINK_KEEP_PACKAGED_MODULES=true
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   531
  else
43046
717ce6d4eaa1 8171409: Create a smoother configure experience on macosx
ihse
parents: 42979
diff changeset
   532
    AC_MSG_RESULT([error])
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   533
    AC_MSG_ERROR([--enable-keep-packaged-modules accepts no argument])
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   534
  fi
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   535
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   536
  AC_SUBST(JLINK_KEEP_PACKAGED_MODULES)
17612cee3530 8142968: Module System implementation
alanb
parents: 35747
diff changeset
   537
])
37035
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   538
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   539
################################################################################
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   540
#
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   541
# 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
   542
#
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   543
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
   544
[
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   545
  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
   546
    [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
   547
     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
   548
     dependencies are present and otherwise just disabled.])])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   549
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   550
  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
   551
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   552
  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
   553
    if test "x$JT_HOME" = "x"; then
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   554
      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
   555
    else
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   556
      BUILD_FAILURE_HANDLER=true
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   557
      AC_MSG_RESULT([yes, forced])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   558
    fi
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   559
  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
   560
    BUILD_FAILURE_HANDLER=false
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   561
    AC_MSG_RESULT([no, forced])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   562
  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
   563
      || 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
   564
    if test "x$JT_HOME" = "x"; then
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   565
      BUILD_FAILURE_HANDLER=false
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   566
      AC_MSG_RESULT([no, missing jtreg])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   567
    else
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   568
      BUILD_FAILURE_HANDLER=true
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   569
      AC_MSG_RESULT([yes, jtreg present])
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   570
    fi
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   571
  else
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   572
    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
   573
  fi
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   574
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   575
  AC_SUBST(BUILD_FAILURE_HANDLER)
08e00f202d7a 8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents: 36506
diff changeset
   576
])
38546
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   577
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   578
################################################################################
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   579
#
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   580
# 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
   581
#
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   582
AC_DEFUN_ONCE([JDKOPT_ENABLE_DISABLE_GENERATE_CLASSLIST],
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   583
[
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   584
  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
   585
      [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
   586
      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
   587
      enable-cds is true.])])
38546
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   588
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   589
  # 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
   590
  # on exact jvm configuration it could be possible anyway.
52039
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 52030
diff changeset
   591
  if test "x$ENABLE_CDS" = "xtrue" && (HOTSPOT_CHECK_JVM_VARIANT(server) || HOTSPOT_CHECK_JVM_VARIANT(client) || HOTSPOT_CHECK_JVM_FEATURE(cds)); then
38546
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   592
    ENABLE_GENERATE_CLASSLIST_POSSIBLE="true"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   593
  else
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   594
    ENABLE_GENERATE_CLASSLIST_POSSIBLE="false"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   595
  fi
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   596
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   597
  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
   598
  if test "x$enable_generate_classlist" = "xyes"; then
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   599
    AC_MSG_RESULT([yes, forced])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   600
    ENABLE_GENERATE_CLASSLIST="true"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   601
    if test "x$ENABLE_GENERATE_CLASSLIST_POSSIBLE" = "xfalse"; then
47060
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 44734
diff changeset
   602
      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
   603
    fi
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   604
  elif test "x$enable_generate_classlist" = "xno"; then
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   605
    AC_MSG_RESULT([no, forced])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   606
    ENABLE_GENERATE_CLASSLIST="false"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   607
  elif test "x$enable_generate_classlist" = "x"; then
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   608
    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
   609
      AC_MSG_RESULT([yes])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   610
      ENABLE_GENERATE_CLASSLIST="true"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   611
    else
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   612
      AC_MSG_RESULT([no])
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   613
      ENABLE_GENERATE_CLASSLIST="false"
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   614
    fi
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   615
  else
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   616
    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
   617
  fi
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   618
43383
5e74f3dd4656 8173107: Fix autoconf/spec.gmk mismatches
ihse
parents: 43046
diff changeset
   619
  AC_SUBST(ENABLE_GENERATE_CLASSLIST)
38546
91a5c3430d4f 8157336: Generation of classlists at build time should be configurable
erikj
parents: 37968
diff changeset
   620
])
50590
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   621
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   622
################################################################################
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   623
#
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   624
# Optionally filter resource translations
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   625
#
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   626
AC_DEFUN([JDKOPT_EXCLUDE_TRANSLATIONS],
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   627
[
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   628
  AC_ARG_WITH([exclude-translations], [AS_HELP_STRING([--with-exclude-translations],
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   629
      [a comma separated list of locales to exclude translations for. Default is
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   630
      to include all translations present in the source.])])
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   631
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   632
  EXCLUDE_TRANSLATIONS=""
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   633
  AC_MSG_CHECKING([if any translations should be excluded])
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   634
  if test "x$with_exclude_translations" != "x"; then
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   635
    EXCLUDE_TRANSLATIONS="${with_exclude_translations//,/ }"
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   636
    AC_MSG_RESULT([yes: $EXCLUDE_TRANSLATIONS])
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   637
  else
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   638
    AC_MSG_RESULT([no])
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   639
  fi
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   640
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   641
  AC_SUBST(EXCLUDE_TRANSLATIONS)
5fa19bad622d 8204973: Add build support for filtering translations
erikj
parents: 49920
diff changeset
   642
])
51215
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   643
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   644
################################################################################
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   645
#
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   646
# Optionally disable man pages
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   647
#
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   648
AC_DEFUN([JDKOPT_ENABLE_DISABLE_MANPAGES],
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   649
[
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   650
  AC_ARG_ENABLE([manpages], [AS_HELP_STRING([--disable-manpages],
52714
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52039
diff changeset
   651
      [Set to disable copy of static man pages @<:@enabled@:>@])])
51215
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   652
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   653
  BUILD_MANPAGES="true"
52714
2e52aa822c57 8178317: Create man pages using pandoc from markdown sources
ihse
parents: 52039
diff changeset
   654
  AC_MSG_CHECKING([if static man pages should be copied])
51215
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   655
  if test "x$enable_manpages" = "x"; then
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   656
    AC_MSG_RESULT([yes])
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   657
  elif test "x$enable_manpages" = "xyes"; then
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   658
    AC_MSG_RESULT([yes, forced])
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   659
  elif test "x$enable_manpages" = "xno"; then
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   660
    AC_MSG_RESULT([no, forced])
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   661
    BUILD_MANPAGES="false"
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   662
  else
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   663
    AC_MSG_RESULT([no])
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   664
    AC_MSG_ERROR([--enable-manpages can only yes/no or empty])
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   665
  fi
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   666
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   667
  AC_SUBST(BUILD_MANPAGES)
936823fcf202 8207365: Make man pages optional
erikj
parents: 50590
diff changeset
   668
])
52030
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   669
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   670
################################################################################
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   671
#
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   672
# Disable the default CDS archive generation
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   673
#   cross compilation - disabled
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   674
#
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   675
AC_DEFUN([JDKOPT_ENABLE_DISABLE_CDS_ARCHIVE],
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   676
[
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   677
  AC_ARG_ENABLE([cds-archive], [AS_HELP_STRING([--disable-cds-archive],
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   678
      [Set to disable generation of a default CDS archive in the product image @<:@enabled@:>@])])
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   679
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   680
  AC_MSG_CHECKING([if a default CDS archive should be generated])
52039
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 52030
diff changeset
   681
  if test "x$ENABLE_CDS" = "xfalse"; then
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 52030
diff changeset
   682
    AC_MSG_RESULT([no, because CDS is disabled])
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 52030
diff changeset
   683
    BUILD_CDS_ARCHIVE="false"
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 52030
diff changeset
   684
  elif test "x$COMPILE_TYPE" = "xcross"; then
52030
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   685
    AC_MSG_RESULT([no, not possible with cross compilation])
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   686
    BUILD_CDS_ARCHIVE="false"
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   687
  elif test "x$enable_cds_archive" = "xyes"; then
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   688
    AC_MSG_RESULT([yes, forced])
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   689
    BUILD_CDS_ARCHIVE="true"
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   690
  elif test "x$enable_cds_archive" = "x"; then
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   691
    AC_MSG_RESULT([yes])
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   692
    BUILD_CDS_ARCHIVE="true"
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   693
  elif test "x$enable_cds_archive" = "xno"; then
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   694
    AC_MSG_RESULT([no, forced])
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   695
    BUILD_CDS_ARCHIVE="false"
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   696
  else
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   697
    AC_MSG_RESULT([no])
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   698
    AC_MSG_ERROR([--enable-cds_archive can only be yes/no or empty])
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   699
  fi
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   700
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   701
  AC_SUBST(BUILD_CDS_ARCHIVE)
57862a02bf4b 8202951: Implementation of JEP 341: Default CDS Archives
jiangli
parents: 51824
diff changeset
   702
])