common/autoconf/hotspot.m4
author jwilhelm
Tue, 20 Dec 2016 23:47:16 +0100
changeset 42856 d8775521c2ef
parent 42855 012fe082a0b2
parent 42538 973e43884dba
child 46191 7ec14435e850
child 43383 5e74f3dd4656
permissions -rw-r--r--
Merge
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
#
35747
aeaa6d0101a8 8149647: Incremental enhancements from build-infra
ihse
parents: 35365
diff changeset
     2
# Copyright (c) 2011, 2016, 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
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    27
VALID_JVM_FEATURES="compiler1 compiler2 zero shark minimal dtrace jvmti jvmci \
42538
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
    28
    graal fprof vm-structs jni-check services management all-gcs nmt cds \
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
    29
    static-build link-time-opt aot"
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    30
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    31
# All valid JVM variants
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    32
VALID_JVM_VARIANTS="server client minimal core zero zeroshark custom"
22460
0273c023680c 8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents: 17819
diff changeset
    33
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    34
###############################################################################
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    35
# 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
    36
# constructs, like this:
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    37
# if HOTSPOT_CHECK_JVM_VARIANT(server); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    38
#
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    39
# 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
    40
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    41
# Definition kept in one line to allow inlining in if statements.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    42
# Additional [] needed to keep m4 from mangling shell constructs.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    43
AC_DEFUN([HOTSPOT_CHECK_JVM_VARIANT],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    44
[ [ [[ " $JVM_VARIANTS " =~ " $1 " ]] ] ])
22460
0273c023680c 8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents: 17819
diff changeset
    45
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    46
###############################################################################
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    47
# 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
    48
# shell if constructs, like this:
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    49
# if HOTSPOT_CHECK_JVM_FEATURE(jvmti); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    50
#
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    51
# Only valid to use after HOTSPOT_SETUP_JVM_FEATURES has setup features.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    52
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    53
# Definition kept in one line to allow inlining in if statements.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    54
# Additional [] needed to keep m4 from mangling shell constructs.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    55
AC_DEFUN([HOTSPOT_CHECK_JVM_FEATURE],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    56
[ [ [[ " $JVM_FEATURES " =~ " $1 " ]] ] ])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    57
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    58
###############################################################################
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    59
# 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
    60
#   server: normal interpreter, and a tiered C1/C2 compiler
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    61
#   client: normal interpreter, and C1 (no C2 compiler)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    62
#   minimal: reduced form of client with optional features stripped out
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    63
#   core: normal interpreter only, no compiler
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    64
#   zero: C++ based interpreter only, no compiler
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    65
#   zeroshark: C++ based interpreter, and a llvm-based compiler
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    66
#   custom: baseline JVM with no default features
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    67
#
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
    68
AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_VARIANTS],
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    69
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
    70
  AC_ARG_WITH([jvm-variants], [AS_HELP_STRING([--with-jvm-variants],
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    71
      [JVM variants (separated by commas) to build (server,client,minimal,core,zero,zeroshark,custom) @<:@server@:>@])])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    72
42538
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
    73
  SETUP_HOTSPOT_TARGET_CPU_PORT
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
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
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    97
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
    98
  # grep filter function inspired by a comment to http://stackoverflow.com/a/1617326
37953
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
    99
  # Notice that the original variant failes on SLES 10 and 11
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
   100
  NEEDLE=${VALID_JVM_VARIANTS// /$'\n'}
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
   101
  STACK=${JVM_VARIANTS// /$'\n'}
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
   102
  INVALID_VARIANTS=`$GREP -Fvx "${NEEDLE}" <<< "${STACK}"`
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   103
  if test "x$INVALID_VARIANTS" != x; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   104
    AC_MSG_NOTICE([Unknown variant(s) specified: $INVALID_VARIANTS])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   105
    AC_MSG_ERROR([The available JVM variants are: $VALID_JVM_VARIANTS])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   106
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   107
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   108
  # All "special" variants share the same output directory ("server")
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   109
  VALID_MULTIPLE_JVM_VARIANTS="server client minimal"
37953
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
   110
  NEEDLE=${VALID_MULTIPLE_JVM_VARIANTS// /$'\n'}
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
   111
  STACK=${JVM_VARIANTS// /$'\n'}
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
   112
  INVALID_MULTIPLE_VARIANTS=`$GREP -Fvx "${NEEDLE}" <<< "${STACK}"`
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   113
  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
   114
    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
   115
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   116
42510
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   117
  # 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
   118
  # build.
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   119
  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
   120
    MAIN_VARIANT_PRIO_ORDER="server client minimal"
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   121
    for variant in $MAIN_VARIANT_PRIO_ORDER; do
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   122
      if HOTSPOT_CHECK_JVM_VARIANT($variant); then
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   123
        JVM_VARIANT_MAIN="$variant"
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   124
        break
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   125
      fi
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   126
    done
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   127
  else
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   128
    JVM_VARIANT_MAIN="$JVM_VARIANTS"
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   129
  fi
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   130
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   131
  AC_SUBST(JVM_VARIANTS)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   132
  AC_SUBST(VALID_JVM_VARIANTS)
42510
406dfb60de57 8170284: Move fine granular hotspot make targets to top level
erikj
parents: 39947
diff changeset
   133
  AC_SUBST(JVM_VARIANT_MAIN)
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   134
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   135
  if HOTSPOT_CHECK_JVM_VARIANT(zero) || HOTSPOT_CHECK_JVM_VARIANT(zeroshark); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   136
    # 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
   137
    # 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
   138
    HOTSPOT_TARGET_CPU=zero
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   139
    HOTSPOT_TARGET_CPU_ARCH=zero
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   140
  fi
37402
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
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   143
###############################################################################
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   144
# Check if dtrace should be enabled and has all prerequisites present.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   145
#
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   146
AC_DEFUN_ONCE([HOTSPOT_SETUP_DTRACE],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   147
[
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   148
  # Test for dtrace dependencies
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   149
  AC_ARG_ENABLE([dtrace], [AS_HELP_STRING([--enable-dtrace@<:@=yes/no/auto@:>@],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   150
      [enable dtrace. Default is auto, where dtrace is enabled if all dependencies
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   151
      are present.])])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   152
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   153
  DTRACE_DEP_MISSING=false
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   154
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   155
  AC_MSG_CHECKING([for dtrace tool])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   156
  if test "x$DTRACE" != "x" && test -x "$DTRACE"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   157
    AC_MSG_RESULT([$DTRACE])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   158
  else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   159
    AC_MSG_RESULT([not found, cannot build dtrace])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   160
    DTRACE_DEP_MISSING=true
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   161
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   162
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   163
  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
   164
  if test "x$DTRACE_HEADERS_OK" != "xyes"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   165
    DTRACE_DEP_MISSING=true
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   166
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   167
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   168
  AC_MSG_CHECKING([if dtrace should be built])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   169
  if test "x$enable_dtrace" = "xyes"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   170
    if test "x$DTRACE_DEP_MISSING" = "xtrue"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   171
      AC_MSG_RESULT([no, missing dependencies])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   172
      HELP_MSG_MISSING_DEPENDENCY([dtrace])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   173
      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
   174
    else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   175
      INCLUDE_DTRACE=true
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   176
      AC_MSG_RESULT([yes, forced])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   177
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   178
  elif test "x$enable_dtrace" = "xno"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   179
    INCLUDE_DTRACE=false
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   180
    AC_MSG_RESULT([no, forced])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   181
  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
   182
    if test "x$DTRACE_DEP_MISSING" = "xtrue"; then
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   183
      INCLUDE_DTRACE=false
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   184
      AC_MSG_RESULT([no, missing dependencies])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   185
    else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   186
      INCLUDE_DTRACE=true
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   187
      AC_MSG_RESULT([yes, dependencies present])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   188
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   189
  else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   190
    AC_MSG_ERROR([Invalid value for --enable-dtrace: $enable_dtrace])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   191
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   192
  AC_SUBST(INCLUDE_DTRACE)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   193
])
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   194
42532
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
# Check if AOT should be enabled
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   197
#
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   198
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_AOT],
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   199
[
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   200
  AC_ARG_ENABLE([aot], [AS_HELP_STRING([--enable-aot@<:@=yes/no/auto@:>@],
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   201
      [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
   202
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   203
  if test "x$enable_aot" = "x" || test "x$enable_aot" = "xauto"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   204
    ENABLE_AOT="true"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   205
  elif test "x$enable_aot" = "xyes"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   206
    ENABLE_AOT="true"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   207
  elif test "x$enable_aot" = "xno"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   208
    ENABLE_AOT="false"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   209
    AC_MSG_CHECKING([if aot should be enabled])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   210
    AC_MSG_RESULT([no, forced])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   211
  else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   212
    AC_MSG_ERROR([Invalid value for --enable-aot: $enable_aot])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   213
  fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   214
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   215
  if test "x$ENABLE_AOT" = "xtrue"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   216
    # Only enable AOT on linux-X64.
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   217
    if test "x$OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU" = "xlinux-x86_64"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   218
      if test -e "$HOTSPOT_TOPDIR/src/jdk.aot"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   219
        if test -e "$HOTSPOT_TOPDIR/src/jdk.vm.compiler"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   220
          ENABLE_AOT="true"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   221
        else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   222
          ENABLE_AOT="false"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   223
          if test "x$enable_aot" = "xyes"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   224
            AC_MSG_ERROR([Cannot build AOT without hotspot/src/jdk.vm.compiler sources. Remove --enable-aot.])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   225
          fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   226
        fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   227
      else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   228
        ENABLE_AOT="false"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   229
        if test "x$enable_aot" = "xyes"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   230
          AC_MSG_ERROR([Cannot build AOT without hotspot/src/jdk.aot sources. Remove --enable-aot.])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   231
        fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   232
      fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   233
    else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   234
      ENABLE_AOT="false"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   235
      if test "x$enable_aot" = "xyes"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   236
        AC_MSG_ERROR([AOT is currently only supported on Linux-x86_64. Remove --enable-aot.])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   237
      fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   238
    fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   239
  fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   240
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   241
  AC_SUBST(ENABLE_AOT)
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   242
])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   243
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   244
###############################################################################
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   245
# Set up all JVM features for each JVM variant.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   246
#
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   247
AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_FEATURES],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   248
[
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   249
  # 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
   250
  # variant, this defines the entire variant.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   251
  AC_ARG_WITH([jvm-features], [AS_HELP_STRING([--with-jvm-features],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   252
      [additional JVM features to enable (separated by comma),  use '--help' to show possible values @<:@none@:>@])])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   253
  if test "x$with_jvm_features" != x; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   254
    AC_MSG_CHECKING([additional JVM features])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   255
    JVM_FEATURES=`$ECHO $with_jvm_features | $SED -e 's/,/ /g'`
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   256
    AC_MSG_RESULT([$JVM_FEATURES])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   257
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   258
42538
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   259
  # Override hotspot cpu definitions for ARM platforms
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   260
  if test "x$OPENJDK_TARGET_CPU" = xarm; then
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   261
    HOTSPOT_TARGET_CPU=arm_32
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   262
    HOTSPOT_TARGET_CPU_DEFINE="ARM32"
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   263
    JVM_LDFLAGS="$JVM_LDFLAGS -fsigned-char"
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   264
    JVM_CFLAGS="$JVM_CFLAGS -DARM -fsigned-char"
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   265
  elif test "x$OPENJDK_TARGET_CPU" = xaarch64 && test "x$HOTSPOT_TARGET_CPU_PORT" = xarm64; then
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   266
    HOTSPOT_TARGET_CPU=arm_64
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   267
    HOTSPOT_TARGET_CPU_ARCH=arm
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   268
    JVM_LDFLAGS="$JVM_LDFLAGS -fsigned-char"
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   269
    JVM_CFLAGS="$JVM_CFLAGS -DARM -fsigned-char"
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   270
  fi
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   271
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   272
  # Verify that dependencies are met for explicitly set features.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   273
  if HOTSPOT_CHECK_JVM_FEATURE(jvmti) && ! HOTSPOT_CHECK_JVM_FEATURE(services); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   274
    AC_MSG_ERROR([Specified JVM feature 'jvmti' requires feature 'services'])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   275
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   276
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   277
  if HOTSPOT_CHECK_JVM_FEATURE(management) && ! HOTSPOT_CHECK_JVM_FEATURE(nmt); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   278
    AC_MSG_ERROR([Specified JVM feature 'management' requires feature 'nmt'])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   279
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   280
39946
c82f919f4454 8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents: 39191
diff changeset
   281
  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
   282
    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
   283
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   284
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   285
  if HOTSPOT_CHECK_JVM_FEATURE(compiler2) && ! HOTSPOT_CHECK_JVM_FEATURE(all-gcs); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   286
    AC_MSG_ERROR([Specified JVM feature 'compiler2' requires feature 'all-gcs'])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   287
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   288
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   289
  if HOTSPOT_CHECK_JVM_FEATURE(vm-structs) && ! HOTSPOT_CHECK_JVM_FEATURE(all-gcs); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   290
    AC_MSG_ERROR([Specified JVM feature 'vm-structs' requires feature 'all-gcs'])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   291
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   292
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   293
  # Turn on additional features based on other parts of configure
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   294
  if test "x$INCLUDE_DTRACE" = "xtrue"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   295
    JVM_FEATURES="$JVM_FEATURES dtrace"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   296
  else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   297
    if HOTSPOT_CHECK_JVM_FEATURE(dtrace); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   298
      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
   299
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   300
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   301
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   302
  if test "x$STATIC_BUILD" = "xtrue"; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   303
    JVM_FEATURES="$JVM_FEATURES static-build"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   304
  else
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   305
    if HOTSPOT_CHECK_JVM_FEATURE(static-build); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   306
      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
   307
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   308
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   309
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   310
  if ! HOTSPOT_CHECK_JVM_VARIANT(zero) && ! HOTSPOT_CHECK_JVM_VARIANT(zeroshark); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   311
    if HOTSPOT_CHECK_JVM_FEATURE(zero); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   312
      AC_MSG_ERROR([To enable zero/zeroshark, you must use --with-jvm-variants=zero/zeroshark])
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
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   315
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   316
  if ! HOTSPOT_CHECK_JVM_VARIANT(zeroshark); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   317
    if HOTSPOT_CHECK_JVM_FEATURE(shark); then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   318
      AC_MSG_ERROR([To enable shark, you must use --with-jvm-variants=zeroshark])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   319
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   320
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   321
39946
c82f919f4454 8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents: 39191
diff changeset
   322
  # Only enable jvmci on x86_64, sparcv9 and aarch64.
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   323
  if test "x$OPENJDK_TARGET_CPU" = "xx86_64" || \
42531
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   324
     test "x$OPENJDK_TARGET_CPU" = "xsparcv9" || \
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   325
     test "x$OPENJDK_TARGET_CPU" = "xaarch64" ; then
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   326
    JVM_FEATURES_jvmci="jvmci"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   327
  else
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   328
    JVM_FEATURES_jvmci=""
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 20275
diff changeset
   329
  fi
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
   330
42531
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   331
  AC_MSG_CHECKING([if jdk.vm.compiler should be built])
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   332
  if HOTSPOT_CHECK_JVM_FEATURE(graal); then
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   333
    AC_MSG_RESULT([yes, forced])
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   334
    if test "x$JVM_FEATURES_jvmci" != "xjvmci" ; then
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   335
      AC_MSG_ERROR([Specified JVM feature 'graal' requires feature 'jvmci'])
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   336
    fi
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   337
    INCLUDE_GRAAL="true"
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   338
  else
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   339
    # By default enable graal build where AOT is available
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   340
    if test "x$ENABLE_AOT" = "xtrue"; then
42531
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   341
      AC_MSG_RESULT([yes])
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   342
      JVM_FEATURES_graal="graal"
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   343
      INCLUDE_GRAAL="true"
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   344
    else
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   345
      AC_MSG_RESULT([no])
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   346
      JVM_FEATURES_graal=""
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   347
      INCLUDE_GRAAL="false"
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   348
    fi
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   349
  fi
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   350
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   351
  AC_SUBST(INCLUDE_GRAAL)
37ee95196b17 8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents: 42510
diff changeset
   352
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   353
  AC_MSG_CHECKING([if aot should be enabled])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   354
  if test "x$ENABLE_AOT" = "xtrue"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   355
    if test "x$enable_aot" = "xyes"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   356
      AC_MSG_RESULT([yes, forced])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   357
    else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   358
      AC_MSG_RESULT([yes])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   359
    fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   360
    JVM_FEATURES_aot="aot"
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   361
  else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   362
    if test "x$enable_aot" = "xno"; then
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   363
      AC_MSG_RESULT([no, forced])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   364
    else
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   365
      AC_MSG_RESULT([no])
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   366
    fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   367
    JVM_FEATURES_aot=""
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   368
  fi
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   369
42538
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   370
  if test "x$OPENJDK_TARGET_CPU" = xarm ; then
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   371
    # Default to use link time optimizations on minimal on arm
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   372
    JVM_FEATURES_link_time_opt="link-time-opt"
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   373
  else
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   374
    JVM_FEATURES_link_time_opt=""
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   375
  fi
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   376
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   377
  # All variants but minimal (and custom) get these features
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   378
  NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES jvmti fprof vm-structs jni-check services management all-gcs nmt cds"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   379
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   380
  # Enable features depending on variant.
42532
4780f4130eb0 8171008: Integrate AOT compiler into JDK
kvn
parents: 42531
diff changeset
   381
  JVM_FEATURES_server="compiler1 compiler2 $NON_MINIMAL_FEATURES $JVM_FEATURES $JVM_FEATURES_jvmci $JVM_FEATURES_aot $JVM_FEATURES_graal"
39946
c82f919f4454 8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents: 39191
diff changeset
   382
  JVM_FEATURES_client="compiler1 $NON_MINIMAL_FEATURES $JVM_FEATURES $JVM_FEATURES_jvmci"
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   383
  JVM_FEATURES_core="$NON_MINIMAL_FEATURES $JVM_FEATURES"
42538
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   384
  JVM_FEATURES_minimal="compiler1 minimal $JVM_FEATURES $JVM_FEATURES_link_time_opt"
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   385
  JVM_FEATURES_zero="zero $NON_MINIMAL_FEATURES $JVM_FEATURES"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   386
  JVM_FEATURES_zeroshark="zero shark $NON_MINIMAL_FEATURES $JVM_FEATURES"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   387
  JVM_FEATURES_custom="$JVM_FEATURES"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   388
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   389
  AC_SUBST(JVM_FEATURES_server)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   390
  AC_SUBST(JVM_FEATURES_client)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   391
  AC_SUBST(JVM_FEATURES_core)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   392
  AC_SUBST(JVM_FEATURES_minimal)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   393
  AC_SUBST(JVM_FEATURES_zero)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   394
  AC_SUBST(JVM_FEATURES_zeroshark)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   395
  AC_SUBST(JVM_FEATURES_custom)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   396
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   397
  # Used for verification of Makefiles by check-jvm-feature
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   398
  AC_SUBST(VALID_JVM_FEATURES)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   399
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   400
  # We don't support --with-jvm-interpreter anymore, use zero instead.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   401
  BASIC_DEPRECATED_ARG_WITH(jvm-interpreter)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   402
])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   403
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   404
###############################################################################
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   405
# Validate JVM features once all setup is complete, including custom setup.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   406
#
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   407
AC_DEFUN_ONCE([HOTSPOT_VALIDATE_JVM_FEATURES],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   408
[
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   409
  # Keep feature lists sorted and free of duplicates
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   410
  JVM_FEATURES_server="$($ECHO $($PRINTF '%s\n' $JVM_FEATURES_server | $SORT -u))"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   411
  JVM_FEATURES_client="$($ECHO $($PRINTF '%s\n' $JVM_FEATURES_client | $SORT -u))"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   412
  JVM_FEATURES_core="$($ECHO $($PRINTF '%s\n' $JVM_FEATURES_core | $SORT -u))"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   413
  JVM_FEATURES_minimal="$($ECHO $($PRINTF '%s\n' $JVM_FEATURES_minimal | $SORT -u))"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   414
  JVM_FEATURES_zero="$($ECHO $($PRINTF '%s\n' $JVM_FEATURES_zero | $SORT -u))"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   415
  JVM_FEATURES_zeroshark="$($ECHO $($PRINTF '%s\n' $JVM_FEATURES_zeroshark | $SORT -u))"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   416
  JVM_FEATURES_custom="$($ECHO $($PRINTF '%s\n' $JVM_FEATURES_custom | $SORT -u))"
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 34495
diff changeset
   417
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   418
  # Validate features
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   419
  for variant in $JVM_VARIANTS; do
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   420
    AC_MSG_CHECKING([JVM features for JVM variant '$variant'])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   421
    features_var_name=JVM_FEATURES_$variant
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   422
    JVM_FEATURES_TO_TEST=${!features_var_name}
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   423
    AC_MSG_RESULT([$JVM_FEATURES_TO_TEST])
37953
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
   424
    NEEDLE=${VALID_JVM_FEATURES// /$'\n'}
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
   425
    STACK=${JVM_FEATURES_TO_TEST// /$'\n'}
195cce402934 8154251: ANSI-C Quoting bug in hotspot.m4 during configure on SLES 10 and 11
simonis
parents: 37402
diff changeset
   426
    INVALID_FEATURES=`$GREP -Fvx "${NEEDLE}" <<< "${STACK}"`
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   427
    if test "x$INVALID_FEATURES" != x; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   428
      AC_MSG_ERROR([Invalid JVM feature(s): $INVALID_FEATURES])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   429
    fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   430
  done
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 35747
diff changeset
   431
])
37978
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   432
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   433
################################################################################
42538
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   434
#
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   435
# Specify which sources will be used to build the 64-bit ARM port
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   436
#
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   437
# --with-cpu-port=arm64   will use hotspot/src/cpu/arm
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   438
# --with-cpu-port=aarch64 will use hotspot/src/cpu/aarch64
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   439
#
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   440
AC_DEFUN([SETUP_HOTSPOT_TARGET_CPU_PORT],
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   441
[
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   442
  AC_ARG_WITH(cpu-port, [AS_HELP_STRING([--with-cpu-port],
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   443
      [specify sources to use for Hotspot 64-bit ARM port (arm64,aarch64) @<:@aarch64@:>@ ])])
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   444
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   445
  if test "x$with_cpu_port" != x; then
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   446
    if test "x$OPENJDK_TARGET_CPU" != xaarch64; then
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   447
      AC_MSG_ERROR([--with-cpu-port only available on aarch64])
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   448
    fi
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   449
    if test "x$with_cpu_port" != xarm64 && \
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   450
        test "x$with_cpu_port" != xaarch64; then
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   451
      AC_MSG_ERROR([--with-cpu-port must specify arm64 or aarch64])
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   452
    fi
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   453
    HOTSPOT_TARGET_CPU_PORT="$with_cpu_port"
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   454
  fi
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   455
])
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   456
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   457
973e43884dba 8168503: JEP 297: Unified arm32/arm64 Port
bobv
parents: 42532
diff changeset
   458
################################################################################
37978
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   459
# Check if gtest should be built
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   460
#
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   461
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_GTEST],
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   462
[
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   463
  AC_ARG_ENABLE([hotspot-gtest], [AS_HELP_STRING([--disable-hotspot-gtest],
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   464
      [Disables building of the Hotspot unit tests])])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   465
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   466
  if test -e "$HOTSPOT_TOPDIR/test/native"; then
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   467
    GTEST_DIR_EXISTS="true"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   468
  else
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   469
    GTEST_DIR_EXISTS="false"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   470
  fi
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   471
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   472
  AC_MSG_CHECKING([if Hotspot gtest unit tests should be built])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   473
  if test "x$enable_hotspot_gtest" = "xyes"; then
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   474
    if test "x$GTEST_DIR_EXISTS" = "xtrue"; then
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   475
      AC_MSG_RESULT([yes, forced])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   476
      BUILD_GTEST="true"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   477
    else
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   478
      AC_MSG_ERROR([Cannot build gtest without the test source])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   479
    fi
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   480
  elif test "x$enable_hotspot_gtest" = "xno"; then
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   481
    AC_MSG_RESULT([no, forced])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   482
    BUILD_GTEST="false"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   483
  elif test "x$enable_hotspot_gtest" = "x"; then
42855
012fe082a0b2 8171433: [aix] switch on gtest AIX build
stuefe
parents: 42532
diff changeset
   484
    if test "x$GTEST_DIR_EXISTS" = "xtrue"; then
37978
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   485
      AC_MSG_RESULT([yes])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   486
      BUILD_GTEST="true"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   487
    else
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   488
      AC_MSG_RESULT([no])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   489
      BUILD_GTEST="false"
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   490
    fi
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   491
  else
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   492
    AC_MSG_ERROR([--enable-gtest must be either yes or no])
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   493
  fi
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   494
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   495
  AC_SUBST(BUILD_GTEST)
2614022b9fa5 8157348: Build fails with certain source configurations
erikj
parents: 37960
diff changeset
   496
])