make/autoconf/hotspot.m4
author shade
Thu, 13 Dec 2018 16:45:26 +0100
changeset 53021 cc4098b3bc10
parent 52925 9c18c9d839d3
child 53434 ddfa4bfabdec
permissions -rw-r--r--
8215356: Disable x86_32 Shenandoah build to avoid hotspot/tier1 failures Reviewed-by: rkennke
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
#
49120
c04d813140dc 8198724: Refactor FLAGS handling in configure
ihse
parents: 47871
diff changeset
     2
# Copyright (c) 2011, 2018, 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
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    26
# All valid JVM features, regardless of platform
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47217
diff changeset
    27
VALID_JVM_FEATURES="compiler1 compiler2 zero minimal dtrace jvmti jvmci \
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
    28
    graal vm-structs jni-check services management cmsgc epsilongc g1gc parallelgc serialgc shenandoahgc zgc nmt cds \
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50104
diff changeset
    29
    static-build link-time-opt aot jfr"
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    30
50266
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
    31
# Deprecated JVM features (these are ignored, but with a warning)
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
    32
DEPRECATED_JVM_FEATURES="trace"
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
    33
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    34
# All valid JVM variants
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47217
diff changeset
    35
VALID_JVM_VARIANTS="server client minimal core zero custom"
22460
0273c023680c 8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents: 17819
diff changeset
    36
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    37
###############################################################################
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    38
# Check if the specified JVM variant should be built. To be used in shell if
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    39
# constructs, like this:
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    40
# if HOTSPOT_CHECK_JVM_VARIANT(server); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    41
#
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    42
# Only valid to use after HOTSPOT_SETUP_JVM_VARIANTS has setup variants.
22460
0273c023680c 8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents: 17819
diff changeset
    43
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    44
# Definition kept in one line to allow inlining in if statements.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    45
# Additional [] needed to keep m4 from mangling shell constructs.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    46
AC_DEFUN([HOTSPOT_CHECK_JVM_VARIANT],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    47
[ [ [[ " $JVM_VARIANTS " =~ " $1 " ]] ] ])
22460
0273c023680c 8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents: 17819
diff changeset
    48
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    49
###############################################################################
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    50
# Check if the specified JVM features are explicitly enabled. To be used in
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    51
# shell if constructs, like this:
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    52
# if HOTSPOT_CHECK_JVM_FEATURE(jvmti); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    53
#
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    54
# Only valid to use after HOTSPOT_SETUP_JVM_FEATURES has setup features.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    55
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    56
# Definition kept in one line to allow inlining in if statements.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    57
# Additional [] needed to keep m4 from mangling shell constructs.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    58
AC_DEFUN([HOTSPOT_CHECK_JVM_FEATURE],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    59
[ [ [[ " $JVM_FEATURES " =~ " $1 " ]] ] ])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    60
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    61
###############################################################################
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    62
# Check which variants of the JVM that we want to build. Available variants are:
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    63
#   server: normal interpreter, and a tiered C1/C2 compiler
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    64
#   client: normal interpreter, and C1 (no C2 compiler)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    65
#   minimal: reduced form of client with optional features stripped out
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    66
#   core: normal interpreter only, no compiler
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    67
#   zero: C++ based interpreter only, no compiler
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    68
#   custom: baseline JVM with no default features
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    69
#
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    70
AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_VARIANTS],
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    71
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    72
  AC_ARG_WITH([jvm-variants], [AS_HELP_STRING([--with-jvm-variants],
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47217
diff changeset
    73
      [JVM variants (separated by commas) to build (server,client,minimal,core,zero,custom) @<:@server@:>@])])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    74
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    75
  if test "x$with_jvm_variants" = x; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    76
    with_jvm_variants="server"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    77
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    78
  JVM_VARIANTS_OPT="$with_jvm_variants"
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    79
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    80
  # Has the user listed more than one variant?
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    81
  # Additional [] needed to keep m4 from mangling shell constructs.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    82
  if [ [[ "$JVM_VARIANTS_OPT" =~ "," ]] ]; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    83
    BUILDING_MULTIPLE_JVM_VARIANTS=true
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    84
  else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    85
    BUILDING_MULTIPLE_JVM_VARIANTS=false
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    86
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    87
  # Replace the commas with AND for use in the build directory name.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    88
  JVM_VARIANTS_WITH_AND=`$ECHO "$JVM_VARIANTS_OPT" | $SED -e 's/,/AND/g'`
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    89
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    90
  AC_MSG_CHECKING([which variants of the JVM to build])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    91
  # JVM_VARIANTS is a space-separated list.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    92
  # Also use minimal, not minimal1 (which is kept for backwards compatibility).
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    93
  JVM_VARIANTS=`$ECHO $JVM_VARIANTS_OPT | $SED -e 's/,/ /g' -e 's/minimal1/minimal/'`
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    94
  AC_MSG_RESULT([$JVM_VARIANTS])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    95
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    96
  # Check that the selected variants are valid
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
    97
  BASIC_GET_NON_MATCHING_VALUES(INVALID_VARIANTS, $JVM_VARIANTS, $VALID_JVM_VARIANTS)
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    98
  if test "x$INVALID_VARIANTS" != x; then
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
    99
    AC_MSG_NOTICE([Unknown variant(s) specified: "$INVALID_VARIANTS"])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   100
    AC_MSG_NOTICE([The available JVM variants are: "$VALID_JVM_VARIANTS"])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   101
    AC_MSG_ERROR([Cannot continue])
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   102
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   103
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   104
  # All "special" variants share the same output directory ("server")
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   105
  VALID_MULTIPLE_JVM_VARIANTS="server client minimal"
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   106
  BASIC_GET_NON_MATCHING_VALUES(INVALID_MULTIPLE_VARIANTS, $JVM_VARIANTS, $VALID_MULTIPLE_JVM_VARIANTS)
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   107
  if  test "x$INVALID_MULTIPLE_VARIANTS" != x && test "x$BUILDING_MULTIPLE_JVM_VARIANTS" = xtrue; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   108
    AC_MSG_ERROR([You cannot build multiple variants with anything else than $VALID_MULTIPLE_JVM_VARIANTS.])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   109
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   110
42510
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   111
  # The "main" variant is the one used by other libs to link against during the
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   112
  # build.
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   113
  if test "x$BUILDING_MULTIPLE_JVM_VARIANTS" = "xtrue"; then
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   114
    MAIN_VARIANT_PRIO_ORDER="server client minimal"
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   115
    for variant in $MAIN_VARIANT_PRIO_ORDER; do
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   116
      if HOTSPOT_CHECK_JVM_VARIANT($variant); then
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   117
        JVM_VARIANT_MAIN="$variant"
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   118
        break
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   119
      fi
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   120
    done
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   121
  else
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   122
    JVM_VARIANT_MAIN="$JVM_VARIANTS"
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   123
  fi
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   124
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   125
  AC_SUBST(JVM_VARIANTS)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   126
  AC_SUBST(VALID_JVM_VARIANTS)
42510
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   127
  AC_SUBST(JVM_VARIANT_MAIN)
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   128
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47217
diff changeset
   129
  if HOTSPOT_CHECK_JVM_VARIANT(zero); then
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   130
    # zero behaves as a platform and rewrites these values. This is really weird. :(
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   131
    # We are guaranteed that we do not build any other variants when building zero.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   132
    HOTSPOT_TARGET_CPU=zero
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   133
    HOTSPOT_TARGET_CPU_ARCH=zero
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   134
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   135
])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   136
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   137
###############################################################################
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   138
# Check if dtrace should be enabled and has all prerequisites present.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   139
#
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   140
AC_DEFUN_ONCE([HOTSPOT_SETUP_DTRACE],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   141
[
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   142
  # Test for dtrace dependencies
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   143
  AC_ARG_ENABLE([dtrace], [AS_HELP_STRING([--enable-dtrace@<:@=yes/no/auto@:>@],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   144
      [enable dtrace. Default is auto, where dtrace is enabled if all dependencies
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   145
      are present.])])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   146
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   147
  DTRACE_DEP_MISSING=false
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   148
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   149
  AC_MSG_CHECKING([for dtrace tool])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   150
  if test "x$DTRACE" != "x" && test -x "$DTRACE"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   151
    AC_MSG_RESULT([$DTRACE])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   152
  else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   153
    AC_MSG_RESULT([not found, cannot build dtrace])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   154
    DTRACE_DEP_MISSING=true
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   155
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   156
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   157
  AC_CHECK_HEADERS([sys/sdt.h], [DTRACE_HEADERS_OK=yes],[DTRACE_HEADERS_OK=no])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   158
  if test "x$DTRACE_HEADERS_OK" != "xyes"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   159
    DTRACE_DEP_MISSING=true
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   160
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   161
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   162
  AC_MSG_CHECKING([if dtrace should be built])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   163
  if test "x$enable_dtrace" = "xyes"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   164
    if test "x$DTRACE_DEP_MISSING" = "xtrue"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   165
      AC_MSG_RESULT([no, missing dependencies])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   166
      HELP_MSG_MISSING_DEPENDENCY([dtrace])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   167
      AC_MSG_ERROR([Cannot enable dtrace with missing dependencies. See above. $HELP_MSG])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   168
    else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   169
      INCLUDE_DTRACE=true
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   170
      AC_MSG_RESULT([yes, forced])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   171
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   172
  elif test "x$enable_dtrace" = "xno"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   173
    INCLUDE_DTRACE=false
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   174
    AC_MSG_RESULT([no, forced])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   175
  elif test "x$enable_dtrace" = "xauto" || test "x$enable_dtrace" = "x"; then
39384
adde8cb7d01b 8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents: 39191
diff changeset
   176
    if test "x$DTRACE_DEP_MISSING" = "xtrue"; then
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   177
      INCLUDE_DTRACE=false
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   178
      AC_MSG_RESULT([no, missing dependencies])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   179
    else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   180
      INCLUDE_DTRACE=true
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   181
      AC_MSG_RESULT([yes, dependencies present])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   182
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   183
  else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   184
    AC_MSG_ERROR([Invalid value for --enable-dtrace: $enable_dtrace])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   185
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   186
])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   187
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   188
################################################################################
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   189
# Check if AOT should be enabled
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   190
#
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   191
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_AOT],
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   192
[
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   193
  AC_ARG_ENABLE([aot], [AS_HELP_STRING([--enable-aot@<:@=yes/no/auto@:>@],
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   194
      [enable ahead of time compilation feature. Default is auto, where aot is enabled if all dependencies are present.])])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   195
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   196
  if test "x$enable_aot" = "x" || test "x$enable_aot" = "xauto"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   197
    ENABLE_AOT="true"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   198
  elif test "x$enable_aot" = "xyes"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   199
    ENABLE_AOT="true"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   200
  elif test "x$enable_aot" = "xno"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   201
    ENABLE_AOT="false"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   202
  else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   203
    AC_MSG_ERROR([Invalid value for --enable-aot: $enable_aot])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   204
  fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   205
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   206
  if test "x$ENABLE_AOT" = "xtrue"; then
46191
7ec14435e850 8172670: AOT Platform Support for Windows and Mac OS X x64
bobv
parents: 42856
diff changeset
   207
    # Only enable AOT on X64 platforms.
50104
4ea7917929b9 8185505: AArch64: Port AOT to AArch64
aph
parents: 49982
diff changeset
   208
    if test "x$OPENJDK_TARGET_CPU" = "xx86_64" || test "x$OPENJDK_TARGET_CPU" = "xaarch64" ; then
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
   209
      if test -e "${TOPDIR}/src/jdk.aot"; then
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
   210
        if test -e "${TOPDIR}/src/jdk.internal.vm.compiler"; then
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   211
          ENABLE_AOT="true"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   212
        else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   213
          ENABLE_AOT="false"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   214
          if test "x$enable_aot" = "xyes"; then
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
   215
            AC_MSG_ERROR([Cannot build AOT without src/jdk.internal.vm.compiler sources. Remove --enable-aot.])
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   216
          fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   217
        fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   218
      else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   219
        ENABLE_AOT="false"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   220
        if test "x$enable_aot" = "xyes"; then
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
   221
          AC_MSG_ERROR([Cannot build AOT without src/jdk.aot sources. Remove --enable-aot.])
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   222
        fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   223
      fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   224
    else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   225
      ENABLE_AOT="false"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   226
      if test "x$enable_aot" = "xyes"; then
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   227
        AC_MSG_ERROR([AOT is currently only supported on x86_64 and aarch64. Remove --enable-aot.])
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   228
      fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   229
    fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   230
  fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   231
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   232
  AC_SUBST(ENABLE_AOT)
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   233
])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   234
47060
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   235
################################################################################
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   236
# Allow to disable CDS
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   237
#
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   238
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_CDS],
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   239
[
50625
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   240
  AC_ARG_ENABLE([cds], [AS_HELP_STRING([--enable-cds@<:@=yes/no/auto@:>@],
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   241
      [enable class data sharing feature in non-minimal VM. Default is auto, where cds is enabled if supported on the platform.])])
47060
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   242
50625
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   243
  if test "x$enable_cds" = "x" || test "x$enable_cds" = "xauto"; then
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   244
    ENABLE_CDS="true"
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   245
  elif test "x$enable_cds" = "xyes"; then
47060
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   246
    ENABLE_CDS="true"
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   247
  elif test "x$enable_cds" = "xno"; then
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   248
    ENABLE_CDS="false"
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   249
  else
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   250
    AC_MSG_ERROR([Invalid value for --enable-cds: $enable_cds])
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   251
  fi
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   252
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   253
  AC_SUBST(ENABLE_CDS)
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   254
])
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   255
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   256
###############################################################################
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   257
# Set up all JVM features for each JVM variant.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   258
#
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   259
AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_FEATURES],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   260
[
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   261
  # Prettify the VALID_JVM_FEATURES string
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   262
  BASIC_SORT_LIST(VALID_JVM_FEATURES, $VALID_JVM_FEATURES)
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   263
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   264
  # The user can in some cases supply additional jvm features. For the custom
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   265
  # variant, this defines the entire variant.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   266
  AC_ARG_WITH([jvm-features], [AS_HELP_STRING([--with-jvm-features],
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   267
      [JVM features to enable (foo) or disable (-foo), separated by comma. Use '--help' to show possible values @<:@none@:>@])])
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   268
  if test "x$with_jvm_features" != x; then
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   269
    AC_MSG_CHECKING([user specified JVM feature list])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   270
    USER_JVM_FEATURE_LIST=`$ECHO $with_jvm_features | $SED -e 's/,/ /g'`
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   271
    AC_MSG_RESULT([$user_jvm_feature_list])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   272
    # These features will be added to all variant defaults
50266
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   273
    JVM_FEATURES=`$ECHO $USER_JVM_FEATURE_LIST | $AWK '{ for (i=1; i<=NF; i++) if (!match($i, /^-.*/)) printf("%s ", $i) }'`
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   274
    # These features will be removed from all variant defaults
50266
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   275
    DISABLED_JVM_FEATURES=`$ECHO $USER_JVM_FEATURE_LIST | $AWK '{ for (i=1; i<=NF; i++) if (match($i, /^-.*/)) printf("%s ", substr($i, 2))}'`
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   276
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   277
    # Verify that the user has provided valid features
50266
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   278
    BASIC_GET_NON_MATCHING_VALUES(INVALID_FEATURES, $JVM_FEATURES $DISABLED_JVM_FEATURES, $VALID_JVM_FEATURES $DEPRECATED_JVM_FEATURES)
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   279
    if test "x$INVALID_FEATURES" != x; then
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   280
      AC_MSG_NOTICE([Unknown JVM features specified: "$INVALID_FEATURES"])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   281
      AC_MSG_NOTICE([The available JVM features are: "$VALID_JVM_FEATURES"])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   282
      AC_MSG_ERROR([Cannot continue])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   283
    fi
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   284
50266
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   285
    # Check if the user has provided deprecated features
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   286
    BASIC_GET_MATCHING_VALUES(DEPRECATED_FEATURES, $JVM_FEATURES $DISABLED_JVM_FEATURES, $DEPRECATED_JVM_FEATURES)
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   287
    if test "x$DEPRECATED_FEATURES" != x; then
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   288
      AC_MSG_WARN([Deprecated JVM features specified (will be ignored): "$DEPRECATED_FEATURES"])
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   289
      # Filter out deprecated features
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   290
      BASIC_GET_NON_MATCHING_VALUES(JVM_FEATURES, $JVM_FEATURES, $DEPRECATED_FEATURES)
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   291
      BASIC_GET_NON_MATCHING_VALUES(DISABLED_JVM_FEATURES, $DISABLED_JVM_FEATURES, $DEPRECATED_FEATURES)
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   292
    fi
8090a68b6af5 8203221: Makefile fixes after Flight Recorder
ihse
parents: 50216
diff changeset
   293
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   294
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   295
42538
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   296
  # Override hotspot cpu definitions for ARM platforms
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   297
  if test "x$OPENJDK_TARGET_CPU" = xarm; then
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   298
    HOTSPOT_TARGET_CPU=arm_32
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   299
    HOTSPOT_TARGET_CPU_DEFINE="ARM32"
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   300
  fi
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   301
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   302
  # Verify that dependencies are met for explicitly set features.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   303
  if HOTSPOT_CHECK_JVM_FEATURE(jvmti) && ! HOTSPOT_CHECK_JVM_FEATURE(services); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   304
    AC_MSG_ERROR([Specified JVM feature 'jvmti' requires feature 'services'])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   305
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   306
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   307
  if HOTSPOT_CHECK_JVM_FEATURE(management) && ! HOTSPOT_CHECK_JVM_FEATURE(nmt); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   308
    AC_MSG_ERROR([Specified JVM feature 'management' requires feature 'nmt'])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   309
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   310
39946
c82f919f4454 8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents: 39191
diff changeset
   311
  if HOTSPOT_CHECK_JVM_FEATURE(jvmci) && ! (HOTSPOT_CHECK_JVM_FEATURE(compiler1) || HOTSPOT_CHECK_JVM_FEATURE(compiler2)); then
c82f919f4454 8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents: 39191
diff changeset
   312
    AC_MSG_ERROR([Specified JVM feature 'jvmci' requires feature 'compiler2' or 'compiler1'])
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   313
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   314
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49707
diff changeset
   315
  if HOTSPOT_CHECK_JVM_FEATURE(cmsgc) && ! HOTSPOT_CHECK_JVM_FEATURE(serialgc); then
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49707
diff changeset
   316
    AC_MSG_ERROR([Specified JVM feature 'cmsgc' requires feature 'serialgc'])
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   317
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   318
50216
f4fd580dd7d1 8203410: Zero: Disable jfr feature by default
sgehwolf
parents: 50113
diff changeset
   319
  # Enable JFR by default, except for Zero, linux-sparcv9 and on minimal.
f4fd580dd7d1 8203410: Zero: Disable jfr feature by default
sgehwolf
parents: 50113
diff changeset
   320
  if ! HOTSPOT_CHECK_JVM_VARIANT(zero); then
51214
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 51068
diff changeset
   321
    if test "x$OPENJDK_TARGET_OS" != xaix; then
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 51068
diff changeset
   322
      if test "x$OPENJDK_TARGET_OS" != xlinux || test "x$OPENJDK_TARGET_CPU" != xsparcv9; then
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 51068
diff changeset
   323
        NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES jfr"
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 51068
diff changeset
   324
      fi
50216
f4fd580dd7d1 8203410: Zero: Disable jfr feature by default
sgehwolf
parents: 50113
diff changeset
   325
    fi
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50104
diff changeset
   326
  fi
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50104
diff changeset
   327
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   328
  # Only enable Shenandoah on supported arches
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   329
  AC_MSG_CHECKING([if shenandoah can be built])
53021
cc4098b3bc10 8215356: Disable x86_32 Shenandoah build to avoid hotspot/tier1 failures
shade
parents: 52925
diff changeset
   330
  if test "x$OPENJDK_TARGET_CPU" = "xx86_64" || test "x$OPENJDK_TARGET_CPU" = "xaarch64" ; then
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   331
    AC_MSG_RESULT([yes])
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   332
  else
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   333
    DISABLED_JVM_FEATURES="$DISABLED_JVM_FEATURES shenandoahgc"
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   334
    AC_MSG_RESULT([no, platform not supported])
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   335
  fi
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   336
52798
5d292d59fe40 8214476: ZGC: Build ZGC by default
pliden
parents: 52351
diff changeset
   337
  # Only enable ZGC on supported platforms
5d292d59fe40 8214476: ZGC: Build ZGC by default
pliden
parents: 52351
diff changeset
   338
  AC_MSG_CHECKING([if zgc can be built])
5d292d59fe40 8214476: ZGC: Build ZGC by default
pliden
parents: 52351
diff changeset
   339
  if test "x$OPENJDK_TARGET_OS" = "xlinux" && test "x$OPENJDK_TARGET_CPU" = "xx86_64"; then
5d292d59fe40 8214476: ZGC: Build ZGC by default
pliden
parents: 52351
diff changeset
   340
    AC_MSG_RESULT([yes])
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50523
diff changeset
   341
  else
52798
5d292d59fe40 8214476: ZGC: Build ZGC by default
pliden
parents: 52351
diff changeset
   342
    DISABLED_JVM_FEATURES="$DISABLED_JVM_FEATURES zgc"
5d292d59fe40 8214476: ZGC: Build ZGC by default
pliden
parents: 52351
diff changeset
   343
    AC_MSG_RESULT([no, platform not supported])
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50523
diff changeset
   344
  fi
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50523
diff changeset
   345
51954
d82660ddd75c 8211268: Disable unsupported GCs for Zero
shade
parents: 51586
diff changeset
   346
  # Disable unsupported GCs for Zero
d82660ddd75c 8211268: Disable unsupported GCs for Zero
shade
parents: 51586
diff changeset
   347
  if HOTSPOT_CHECK_JVM_VARIANT(zero); then
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   348
    DISABLED_JVM_FEATURES="$DISABLED_JVM_FEATURES epsilongc g1gc zgc shenandoahgc"
51954
d82660ddd75c 8211268: Disable unsupported GCs for Zero
shade
parents: 51586
diff changeset
   349
  fi
d82660ddd75c 8211268: Disable unsupported GCs for Zero
shade
parents: 51586
diff changeset
   350
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   351
  # Turn on additional features based on other parts of configure
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   352
  if test "x$INCLUDE_DTRACE" = "xtrue"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   353
    JVM_FEATURES="$JVM_FEATURES dtrace"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   354
  else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   355
    if HOTSPOT_CHECK_JVM_FEATURE(dtrace); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   356
      AC_MSG_ERROR([To enable dtrace, you must use --enable-dtrace])
14810
4e7fee179b4a 7190137: Add support for JVM_VARIANT minimal1
dholmes
parents: 14615
diff changeset
   357
    fi
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
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   360
  if test "x$STATIC_BUILD" = "xtrue"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   361
    JVM_FEATURES="$JVM_FEATURES static-build"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   362
  else
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   363
    if HOTSPOT_CHECK_JVM_FEATURE(static-build); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   364
      AC_MSG_ERROR([To enable static-build, you must use --enable-static-build])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   365
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   366
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   367
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47217
diff changeset
   368
  if ! HOTSPOT_CHECK_JVM_VARIANT(zero); then
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   369
    if HOTSPOT_CHECK_JVM_FEATURE(zero); then
47687
fb290fd1f9d4 8171853: Remove Shark compiler
rkennke
parents: 47217
diff changeset
   370
      AC_MSG_ERROR([To enable zero, you must use --with-jvm-variants=zero])
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   371
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   372
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   373
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   374
  AC_MSG_CHECKING([if jvmci module jdk.internal.vm.ci should be built])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   375
  # Check if jvmci is diabled
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   376
  DISABLE_JVMCI=`$ECHO $DISABLED_JVM_FEATURES | $GREP jvmci`
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   377
  if test "x$DISABLE_JVMCI" = "xjvmci"; then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   378
    AC_MSG_RESULT([no, forced])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   379
    JVM_FEATURES_jvmci=""
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   380
    INCLUDE_JVMCI="false"
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   381
  else
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   382
    # Only enable jvmci on x86_64, sparcv9 and aarch64
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   383
    if test "x$OPENJDK_TARGET_CPU" = "xx86_64" || \
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   384
       test "x$OPENJDK_TARGET_CPU" = "xsparcv9" || \
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   385
       test "x$OPENJDK_TARGET_CPU" = "xaarch64" ; then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   386
      AC_MSG_RESULT([yes])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   387
      JVM_FEATURES_jvmci="jvmci"
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   388
      INCLUDE_JVMCI="true"
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   389
    else
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   390
      AC_MSG_RESULT([no])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   391
      JVM_FEATURES_jvmci=""
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   392
      INCLUDE_JVMCI="false"
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   393
      if HOTSPOT_CHECK_JVM_FEATURE(jvmci); then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   394
        AC_MSG_ERROR([JVMCI is currently not supported on this platform.])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   395
      fi
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   396
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   397
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   398
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   399
  AC_SUBST(INCLUDE_JVMCI)
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   400
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   401
  AC_MSG_CHECKING([if graal module jdk.internal.vm.compiler should be built])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   402
  # Check if graal is diabled
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   403
  DISABLE_GRAAL=`$ECHO $DISABLED_JVM_FEATURES | $GREP graal`
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   404
  if test "x$DISABLE_GRAAL" = "xgraal"; then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   405
    AC_MSG_RESULT([no, forced])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   406
    JVM_FEATURES_graal=""
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   407
    INCLUDE_GRAAL="false"
42531
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   408
  else
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   409
    if HOTSPOT_CHECK_JVM_FEATURE(graal); then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   410
      AC_MSG_RESULT([yes, forced])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   411
      if test "x$JVM_FEATURES_jvmci" != "xjvmci" ; then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   412
        AC_MSG_ERROR([Specified JVM feature 'graal' requires feature 'jvmci'])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   413
      fi
42531
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   414
      JVM_FEATURES_graal="graal"
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   415
      INCLUDE_GRAAL="true"
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   416
    else
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   417
      # By default enable graal build on x64 or where AOT is available.
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   418
      # graal build requires jvmci.
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   419
      if test "x$JVM_FEATURES_jvmci" = "xjvmci" && \
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   420
          (test "x$OPENJDK_TARGET_CPU" = "xx86_64" || \
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   421
           test "x$ENABLE_AOT" = "xtrue") ; then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   422
        AC_MSG_RESULT([yes])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   423
        JVM_FEATURES_graal="graal"
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   424
        INCLUDE_GRAAL="true"
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   425
      else
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   426
        AC_MSG_RESULT([no])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   427
        JVM_FEATURES_graal=""
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   428
        INCLUDE_GRAAL="false"
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   429
      fi
42531
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   430
    fi
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   431
  fi
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   432
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   433
  AC_SUBST(INCLUDE_GRAAL)
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   434
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   435
  # Disable aot with '--with-jvm-features=-aot'
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   436
  DISABLE_AOT=`$ECHO $DISABLED_JVM_FEATURES | $GREP aot`
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   437
  if test "x$DISABLE_AOT" = "xaot"; then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   438
    ENABLE_AOT="false"
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   439
  fi
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   440
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   441
  AC_MSG_CHECKING([if aot should be enabled])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   442
  if test "x$ENABLE_AOT" = "xtrue"; then
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   443
    if test "x$JVM_FEATURES_graal" != "xgraal"; then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   444
      if test "x$enable_aot" = "xyes" || HOTSPOT_CHECK_JVM_FEATURE(aot); then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   445
        AC_MSG_RESULT([yes, forced])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   446
        AC_MSG_ERROR([Specified JVM feature 'aot' requires feature 'graal'])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   447
      else
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   448
        AC_MSG_RESULT([no])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   449
      fi
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   450
      JVM_FEATURES_aot=""
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   451
      ENABLE_AOT="false"
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   452
    else
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   453
      if test "x$enable_aot" = "xyes" || HOTSPOT_CHECK_JVM_FEATURE(aot); then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   454
        AC_MSG_RESULT([yes, forced])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   455
      else
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   456
        AC_MSG_RESULT([yes])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   457
      fi
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   458
      JVM_FEATURES_aot="aot"
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   459
    fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   460
  else
51214
67736b4846a0 8207830: [aix] disable jfr in build and tests
goetz
parents: 51068
diff changeset
   461
    if test "x$enable_aot" = "xno" || test "x$DISABLE_AOT" = "xaot"; then
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   462
      AC_MSG_RESULT([no, forced])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   463
    else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   464
      AC_MSG_RESULT([no])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   465
    fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   466
    JVM_FEATURES_aot=""
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   467
    if HOTSPOT_CHECK_JVM_FEATURE(aot); then
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   468
      AC_MSG_ERROR([To enable aot, you must use --enable-aot])
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   469
    fi
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   470
  fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   471
51030
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   472
  AC_SUBST(ENABLE_AOT)
33be1da67b11 8206135: Building jvm with AOT but without JVMCI should fail at configure time
kvn
parents: 50625
diff changeset
   473
42538
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   474
  if test "x$OPENJDK_TARGET_CPU" = xarm ; then
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   475
    # Default to use link time optimizations on minimal on arm
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   476
    JVM_FEATURES_link_time_opt="link-time-opt"
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   477
  else
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   478
    JVM_FEATURES_link_time_opt=""
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   479
  fi
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   480
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   481
  # All variants but minimal (and custom) get these features
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52798
diff changeset
   482
  NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES cmsgc g1gc parallelgc serialgc epsilongc shenandoahgc jni-check jvmti management nmt services vm-structs zgc"
50625
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   483
52039
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   484
  # Disable CDS on AIX.
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   485
  if test "x$OPENJDK_TARGET_OS" = "xaix"; then
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   486
    ENABLE_CDS="false"
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   487
    if test "x$enable_cds" = "xyes"; then
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   488
      AC_MSG_ERROR([CDS is currently not supported on AIX. Remove --enable-cds.])
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   489
    fi
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   490
  fi
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   491
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   492
  # Disable CDS if user requested it with --with-jvm-features=-cds.
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   493
  DISABLE_CDS=`$ECHO $DISABLED_JVM_FEATURES | $GREP cds`
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   494
  if test "x$DISABLE_CDS" = "xcds"; then
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   495
    ENABLE_CDS="false"
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   496
    if test "x$enable_cds" = "xyes"; then
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   497
      AC_MSG_ERROR([CDS was disabled by --with-jvm-features=-cds. Remove --enable-cds.])
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   498
    fi
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   499
  fi
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   500
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   501
  # Disable CDS for zero, minimal, core..
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   502
  if HOTSPOT_CHECK_JVM_VARIANT(zero) || HOTSPOT_CHECK_JVM_VARIANT(minimal) || HOTSPOT_CHECK_JVM_VARIANT(core); then
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   503
    # ..except when the user explicitely requested it with --enable-jvm-features
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   504
    if ! HOTSPOT_CHECK_JVM_FEATURE(cds); then
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   505
      ENABLE_CDS="false"
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   506
      if test "x$enable_cds" = "xyes"; then
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   507
        AC_MSG_ERROR([CDS not implemented for variants zero, minimal, core. Remove --enable-cds.])
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   508
      fi
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   509
    fi
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   510
  fi
15a9f90aa00f 8211837: Creation of the default CDS Archive should depend on ENABLE_CDS
simonis
parents: 51954
diff changeset
   511
50625
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   512
  AC_MSG_CHECKING([if cds should be enabled])
47060
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   513
  if test "x$ENABLE_CDS" = "xtrue"; then
50625
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   514
    if test "x$enable_cds" = "xyes"; then
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   515
      AC_MSG_RESULT([yes, forced])
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   516
    else
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   517
      AC_MSG_RESULT([yes])
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   518
    fi
47060
1deb34f59d8e 8186978: Introduce configure argument enable-cds
goetz
parents: 47056
diff changeset
   519
    NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES cds"
50625
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   520
  else
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   521
    if test "x$enable_cds" = "xno"; then
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   522
      AC_MSG_RESULT([no, forced])
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   523
    else
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   524
      AC_MSG_RESULT([no])
d9753e3db0c6 8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents: 50525
diff changeset
   525
    fi
47871
5ab3961d20dd 8191204: Post-consolidation cleaning up of the build system
ihse
parents: 47687
diff changeset
   526
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   527
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50104
diff changeset
   528
  # Enable features depending on variant.
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   529
  JVM_FEATURES_server="compiler1 compiler2 $NON_MINIMAL_FEATURES $JVM_FEATURES $JVM_FEATURES_jvmci $JVM_FEATURES_aot $JVM_FEATURES_graal"
51068
2e675859332a 8206903: Unable to build Client VM with JVMCI
erikj
parents: 51030
diff changeset
   530
  JVM_FEATURES_client="compiler1 $NON_MINIMAL_FEATURES $JVM_FEATURES"
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   531
  JVM_FEATURES_core="$NON_MINIMAL_FEATURES $JVM_FEATURES"
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49707
diff changeset
   532
  JVM_FEATURES_minimal="compiler1 minimal serialgc $JVM_FEATURES $JVM_FEATURES_link_time_opt"
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   533
  JVM_FEATURES_zero="zero $NON_MINIMAL_FEATURES $JVM_FEATURES"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   534
  JVM_FEATURES_custom="$JVM_FEATURES"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   535
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   536
  AC_SUBST(JVM_FEATURES_server)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   537
  AC_SUBST(JVM_FEATURES_client)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   538
  AC_SUBST(JVM_FEATURES_core)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   539
  AC_SUBST(JVM_FEATURES_minimal)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   540
  AC_SUBST(JVM_FEATURES_zero)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   541
  AC_SUBST(JVM_FEATURES_custom)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   542
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   543
  # Used for verification of Makefiles by check-jvm-feature
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   544
  AC_SUBST(VALID_JVM_FEATURES)
52351
0ecb4e520110 8209093: JEP 340: One AArch64 Port, Not Two
bobv
parents: 52039
diff changeset
   545
0ecb4e520110 8209093: JEP 340: One AArch64 Port, Not Two
bobv
parents: 52039
diff changeset
   546
  # --with-cpu-port is no longer supported
0ecb4e520110 8209093: JEP 340: One AArch64 Port, Not Two
bobv
parents: 52039
diff changeset
   547
  BASIC_DEPRECATED_ARG_WITH(with-cpu-port)
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   548
])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   549
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   550
###############################################################################
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   551
# Finalize JVM features once all setup is complete, including custom setup.
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   552
#
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   553
AC_DEFUN_ONCE([HOTSPOT_FINALIZE_JVM_FEATURES],
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   554
[
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   555
  for variant in $JVM_VARIANTS; do
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   556
    AC_MSG_CHECKING([JVM features for JVM variant '$variant'])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   557
    features_var_name=JVM_FEATURES_$variant
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   558
    JVM_FEATURES_FOR_VARIANT=${!features_var_name}
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   559
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   560
    # Filter out user-requested disabled features
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   561
    BASIC_GET_NON_MATCHING_VALUES(JVM_FEATURES_FOR_VARIANT, $JVM_FEATURES_FOR_VARIANT, $DISABLED_JVM_FEATURES)
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   562
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   563
    # Keep feature lists sorted and free of duplicates
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   564
    BASIC_SORT_LIST(JVM_FEATURES_FOR_VARIANT, $JVM_FEATURES_FOR_VARIANT)
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   565
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   566
    # Update real feature set variable
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   567
    eval $features_var_name='"'$JVM_FEATURES_FOR_VARIANT'"'
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   568
    AC_MSG_RESULT(["$JVM_FEATURES_FOR_VARIANT"])
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   569
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49707
diff changeset
   570
    # Verify that we have at least one gc selected
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49707
diff changeset
   571
    GC_FEATURES=`$ECHO $JVM_FEATURES_FOR_VARIANT | $GREP gc`
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49707
diff changeset
   572
    if test "x$GC_FEATURES" = x; then
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49707
diff changeset
   573
      AC_MSG_WARN([Invalid JVM features: No gc selected for variant $variant.])
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49707
diff changeset
   574
    fi
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49707
diff changeset
   575
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   576
    # Validate features (for configure script errors, not user errors)
49705
68ac1caf3d7e 8201584: Fix configure on SLES 11 after 8201483
goetz
parents: 49582
diff changeset
   577
    BASIC_GET_NON_MATCHING_VALUES(INVALID_FEATURES, $JVM_FEATURES_FOR_VARIANT, $VALID_JVM_FEATURES)
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   578
    if test "x$INVALID_FEATURES" != x; then
49582
f29aeb8bb44f 8201483: Make it possible to disable JVM features
ihse
parents: 49488
diff changeset
   579
      AC_MSG_ERROR([Internal configure script error. Invalid JVM feature(s): $INVALID_FEATURES])
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   580
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   581
  done
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   582
])
37978
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   583
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   584
################################################################################
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   585
# Check if gtest should be built
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   586
#
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   587
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_GTEST],
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   588
[
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   589
  AC_ARG_ENABLE([hotspot-gtest], [AS_HELP_STRING([--disable-hotspot-gtest],
47871
5ab3961d20dd 8191204: Post-consolidation cleaning up of the build system
ihse
parents: 47687
diff changeset
   590
      [Disables building of the Hotspot unit tests @<:@enabled@:>@])])
37978
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   591
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
   592
  if test -e "${TOPDIR}/test/hotspot/gtest"; then
37978
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   593
    GTEST_DIR_EXISTS="true"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   594
  else
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   595
    GTEST_DIR_EXISTS="false"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   596
  fi
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   597
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   598
  AC_MSG_CHECKING([if Hotspot gtest unit tests should be built])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   599
  if test "x$enable_hotspot_gtest" = "xyes"; then
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   600
    if test "x$GTEST_DIR_EXISTS" = "xtrue"; then
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   601
      AC_MSG_RESULT([yes, forced])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   602
      BUILD_GTEST="true"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   603
    else
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   604
      AC_MSG_ERROR([Cannot build gtest without the test source])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   605
    fi
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   606
  elif test "x$enable_hotspot_gtest" = "xno"; then
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   607
    AC_MSG_RESULT([no, forced])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   608
    BUILD_GTEST="false"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   609
  elif test "x$enable_hotspot_gtest" = "x"; then
42855
012fe082a0b2 8171433: [aix] switch on gtest AIX build
stuefe
parents: 42532
diff changeset
   610
    if test "x$GTEST_DIR_EXISTS" = "xtrue"; then
37978
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   611
      AC_MSG_RESULT([yes])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   612
      BUILD_GTEST="true"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   613
    else
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   614
      AC_MSG_RESULT([no])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   615
      BUILD_GTEST="false"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   616
    fi
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   617
  else
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   618
    AC_MSG_ERROR([--enable-gtest must be either yes or no])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   619
  fi
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   620
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   621
  AC_SUBST(BUILD_GTEST)
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   622
])