author | erikj |
Sat, 13 Oct 2018 03:02:28 +0200 | |
branch | JDK-8152988-branch |
changeset 56965 | 1cad8c4161e3 |
parent 52039 | 15a9f90aa00f |
child 52351 | 0ecb4e520110 |
permissions | -rw-r--r-- |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1 |
# |
49120 | 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 | 26 |
# All valid JVM features, regardless of platform |
47687 | 27 |
VALID_JVM_FEATURES="compiler1 compiler2 zero minimal dtrace jvmti jvmci \ |
50525
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
28 |
graal vm-structs jni-check services management cmsgc epsilongc g1gc parallelgc serialgc zgc nmt cds \ |
50113 | 29 |
static-build link-time-opt aot jfr" |
37402 | 30 |
|
50266 | 31 |
# Deprecated JVM features (these are ignored, but with a warning) |
32 |
DEPRECATED_JVM_FEATURES="trace" |
|
33 |
||
37402 | 34 |
# All valid JVM variants |
47687 | 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 | 37 |
############################################################################### |
38 |
# Check if the specified JVM variant should be built. To be used in shell if |
|
39 |
# constructs, like this: |
|
40 |
# if HOTSPOT_CHECK_JVM_VARIANT(server); then |
|
41 |
# |
|
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 | 44 |
# Definition kept in one line to allow inlining in if statements. |
45 |
# Additional [] needed to keep m4 from mangling shell constructs. |
|
46 |
AC_DEFUN([HOTSPOT_CHECK_JVM_VARIANT], |
|
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 | 50 |
# Check if the specified JVM features are explicitly enabled. To be used in |
51 |
# shell if constructs, like this: |
|
52 |
# if HOTSPOT_CHECK_JVM_FEATURE(jvmti); then |
|
53 |
# |
|
54 |
# Only valid to use after HOTSPOT_SETUP_JVM_FEATURES has setup features. |
|
55 |
||
56 |
# Definition kept in one line to allow inlining in if statements. |
|
57 |
# Additional [] needed to keep m4 from mangling shell constructs. |
|
58 |
AC_DEFUN([HOTSPOT_CHECK_JVM_FEATURE], |
|
59 |
[ [ [[ " $JVM_FEATURES " =~ " $1 " ]] ] ]) |
|
60 |
||
61 |
############################################################################### |
|
62 |
# Check which variants of the JVM that we want to build. Available variants are: |
|
63 |
# server: normal interpreter, and a tiered C1/C2 compiler |
|
64 |
# client: normal interpreter, and C1 (no C2 compiler) |
|
65 |
# minimal: reduced form of client with optional features stripped out |
|
66 |
# core: normal interpreter only, no compiler |
|
67 |
# zero: C++ based interpreter only, no compiler |
|
68 |
# custom: baseline JVM with no default features |
|
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 | 72 |
AC_ARG_WITH([jvm-variants], [AS_HELP_STRING([--with-jvm-variants], |
47687 | 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 |
|
42538 | 75 |
SETUP_HOTSPOT_TARGET_CPU_PORT |
76 |
||
20363 | 77 |
if test "x$with_jvm_variants" = x; then |
78 |
with_jvm_variants="server" |
|
79 |
fi |
|
37402 | 80 |
JVM_VARIANTS_OPT="$with_jvm_variants" |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
81 |
|
37402 | 82 |
# Has the user listed more than one variant? |
83 |
# Additional [] needed to keep m4 from mangling shell constructs. |
|
84 |
if [ [[ "$JVM_VARIANTS_OPT" =~ "," ]] ]; then |
|
85 |
BUILDING_MULTIPLE_JVM_VARIANTS=true |
|
86 |
else |
|
87 |
BUILDING_MULTIPLE_JVM_VARIANTS=false |
|
88 |
fi |
|
89 |
# Replace the commas with AND for use in the build directory name. |
|
90 |
JVM_VARIANTS_WITH_AND=`$ECHO "$JVM_VARIANTS_OPT" | $SED -e 's/,/AND/g'` |
|
91 |
||
92 |
AC_MSG_CHECKING([which variants of the JVM to build]) |
|
93 |
# JVM_VARIANTS is a space-separated list. |
|
94 |
# Also use minimal, not minimal1 (which is kept for backwards compatibility). |
|
95 |
JVM_VARIANTS=`$ECHO $JVM_VARIANTS_OPT | $SED -e 's/,/ /g' -e 's/minimal1/minimal/'` |
|
96 |
AC_MSG_RESULT([$JVM_VARIANTS]) |
|
97 |
||
98 |
# Check that the selected variants are valid |
|
49582 | 99 |
BASIC_GET_NON_MATCHING_VALUES(INVALID_VARIANTS, $JVM_VARIANTS, $VALID_JVM_VARIANTS) |
37402 | 100 |
if test "x$INVALID_VARIANTS" != x; then |
49582 | 101 |
AC_MSG_NOTICE([Unknown variant(s) specified: "$INVALID_VARIANTS"]) |
102 |
AC_MSG_NOTICE([The available JVM variants are: "$VALID_JVM_VARIANTS"]) |
|
103 |
AC_MSG_ERROR([Cannot continue]) |
|
37402 | 104 |
fi |
105 |
||
106 |
# All "special" variants share the same output directory ("server") |
|
107 |
VALID_MULTIPLE_JVM_VARIANTS="server client minimal" |
|
49582 | 108 |
BASIC_GET_NON_MATCHING_VALUES(INVALID_MULTIPLE_VARIANTS, $JVM_VARIANTS, $VALID_MULTIPLE_JVM_VARIANTS) |
37402 | 109 |
if test "x$INVALID_MULTIPLE_VARIANTS" != x && test "x$BUILDING_MULTIPLE_JVM_VARIANTS" = xtrue; then |
110 |
AC_MSG_ERROR([You cannot build multiple variants with anything else than $VALID_MULTIPLE_JVM_VARIANTS.]) |
|
111 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
112 |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
113 |
# 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
|
114 |
# build. |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
115 |
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
|
116 |
MAIN_VARIANT_PRIO_ORDER="server client minimal" |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
117 |
for variant in $MAIN_VARIANT_PRIO_ORDER; do |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
118 |
if HOTSPOT_CHECK_JVM_VARIANT($variant); then |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
119 |
JVM_VARIANT_MAIN="$variant" |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
120 |
break |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
121 |
fi |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
122 |
done |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
123 |
else |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
124 |
JVM_VARIANT_MAIN="$JVM_VARIANTS" |
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 |
|
37402 | 127 |
AC_SUBST(JVM_VARIANTS) |
128 |
AC_SUBST(VALID_JVM_VARIANTS) |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
129 |
AC_SUBST(JVM_VARIANT_MAIN) |
37402 | 130 |
|
47687 | 131 |
if HOTSPOT_CHECK_JVM_VARIANT(zero); then |
37402 | 132 |
# zero behaves as a platform and rewrites these values. This is really weird. :( |
133 |
# We are guaranteed that we do not build any other variants when building zero. |
|
134 |
HOTSPOT_TARGET_CPU=zero |
|
135 |
HOTSPOT_TARGET_CPU_ARCH=zero |
|
20363 | 136 |
fi |
37402 | 137 |
]) |
138 |
||
139 |
############################################################################### |
|
140 |
# Check if dtrace should be enabled and has all prerequisites present. |
|
141 |
# |
|
142 |
AC_DEFUN_ONCE([HOTSPOT_SETUP_DTRACE], |
|
143 |
[ |
|
144 |
# Test for dtrace dependencies |
|
145 |
AC_ARG_ENABLE([dtrace], [AS_HELP_STRING([--enable-dtrace@<:@=yes/no/auto@:>@], |
|
146 |
[enable dtrace. Default is auto, where dtrace is enabled if all dependencies |
|
147 |
are present.])]) |
|
148 |
||
149 |
DTRACE_DEP_MISSING=false |
|
150 |
||
151 |
AC_MSG_CHECKING([for dtrace tool]) |
|
152 |
if test "x$DTRACE" != "x" && test -x "$DTRACE"; then |
|
153 |
AC_MSG_RESULT([$DTRACE]) |
|
154 |
else |
|
155 |
AC_MSG_RESULT([not found, cannot build dtrace]) |
|
156 |
DTRACE_DEP_MISSING=true |
|
157 |
fi |
|
158 |
||
159 |
AC_CHECK_HEADERS([sys/sdt.h], [DTRACE_HEADERS_OK=yes],[DTRACE_HEADERS_OK=no]) |
|
160 |
if test "x$DTRACE_HEADERS_OK" != "xyes"; then |
|
161 |
DTRACE_DEP_MISSING=true |
|
162 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
163 |
|
37402 | 164 |
AC_MSG_CHECKING([if dtrace should be built]) |
165 |
if test "x$enable_dtrace" = "xyes"; then |
|
166 |
if test "x$DTRACE_DEP_MISSING" = "xtrue"; then |
|
167 |
AC_MSG_RESULT([no, missing dependencies]) |
|
168 |
HELP_MSG_MISSING_DEPENDENCY([dtrace]) |
|
169 |
AC_MSG_ERROR([Cannot enable dtrace with missing dependencies. See above. $HELP_MSG]) |
|
170 |
else |
|
171 |
INCLUDE_DTRACE=true |
|
172 |
AC_MSG_RESULT([yes, forced]) |
|
173 |
fi |
|
174 |
elif test "x$enable_dtrace" = "xno"; then |
|
175 |
INCLUDE_DTRACE=false |
|
176 |
AC_MSG_RESULT([no, forced]) |
|
177 |
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
|
178 |
if test "x$DTRACE_DEP_MISSING" = "xtrue"; then |
37402 | 179 |
INCLUDE_DTRACE=false |
180 |
AC_MSG_RESULT([no, missing dependencies]) |
|
181 |
else |
|
182 |
INCLUDE_DTRACE=true |
|
183 |
AC_MSG_RESULT([yes, dependencies present]) |
|
184 |
fi |
|
185 |
else |
|
186 |
AC_MSG_ERROR([Invalid value for --enable-dtrace: $enable_dtrace]) |
|
187 |
fi |
|
188 |
]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
189 |
|
42532 | 190 |
################################################################################ |
191 |
# Check if AOT should be enabled |
|
192 |
# |
|
193 |
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_AOT], |
|
194 |
[ |
|
195 |
AC_ARG_ENABLE([aot], [AS_HELP_STRING([--enable-aot@<:@=yes/no/auto@:>@], |
|
196 |
[enable ahead of time compilation feature. Default is auto, where aot is enabled if all dependencies are present.])]) |
|
197 |
||
198 |
if test "x$enable_aot" = "x" || test "x$enable_aot" = "xauto"; then |
|
199 |
ENABLE_AOT="true" |
|
200 |
elif test "x$enable_aot" = "xyes"; then |
|
201 |
ENABLE_AOT="true" |
|
202 |
elif test "x$enable_aot" = "xno"; then |
|
203 |
ENABLE_AOT="false" |
|
204 |
else |
|
205 |
AC_MSG_ERROR([Invalid value for --enable-aot: $enable_aot]) |
|
206 |
fi |
|
207 |
||
208 |
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
|
209 |
# Only enable AOT on X64 platforms. |
50104 | 210 |
if test "x$OPENJDK_TARGET_CPU" = "xx86_64" || test "x$OPENJDK_TARGET_CPU" = "xaarch64" ; then |
47217 | 211 |
if test -e "${TOPDIR}/src/jdk.aot"; then |
212 |
if test -e "${TOPDIR}/src/jdk.internal.vm.compiler"; then |
|
42532 | 213 |
ENABLE_AOT="true" |
214 |
else |
|
215 |
ENABLE_AOT="false" |
|
216 |
if test "x$enable_aot" = "xyes"; then |
|
47217 | 217 |
AC_MSG_ERROR([Cannot build AOT without src/jdk.internal.vm.compiler sources. Remove --enable-aot.]) |
42532 | 218 |
fi |
219 |
fi |
|
220 |
else |
|
221 |
ENABLE_AOT="false" |
|
222 |
if test "x$enable_aot" = "xyes"; then |
|
47217 | 223 |
AC_MSG_ERROR([Cannot build AOT without src/jdk.aot sources. Remove --enable-aot.]) |
42532 | 224 |
fi |
225 |
fi |
|
226 |
else |
|
227 |
ENABLE_AOT="false" |
|
228 |
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
|
229 |
AC_MSG_ERROR([AOT is currently only supported on x86_64 and aarch64. Remove --enable-aot.]) |
42532 | 230 |
fi |
231 |
fi |
|
232 |
fi |
|
233 |
||
234 |
AC_SUBST(ENABLE_AOT) |
|
235 |
]) |
|
236 |
||
47060 | 237 |
################################################################################ |
238 |
# Allow to disable CDS |
|
239 |
# |
|
240 |
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_CDS], |
|
241 |
[ |
|
50625
d9753e3db0c6
8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents:
50525
diff
changeset
|
242 |
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
|
243 |
[enable class data sharing feature in non-minimal VM. Default is auto, where cds is enabled if supported on the platform.])]) |
47060 | 244 |
|
50625
d9753e3db0c6
8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents:
50525
diff
changeset
|
245 |
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
|
246 |
ENABLE_CDS="true" |
d9753e3db0c6
8204965: Fix '--disable-cds' and disable CDS on AIX by default
simonis
parents:
50525
diff
changeset
|
247 |
elif test "x$enable_cds" = "xyes"; then |
47060 | 248 |
ENABLE_CDS="true" |
249 |
elif test "x$enable_cds" = "xno"; then |
|
250 |
ENABLE_CDS="false" |
|
251 |
else |
|
252 |
AC_MSG_ERROR([Invalid value for --enable-cds: $enable_cds]) |
|
253 |
fi |
|
254 |
||
255 |
AC_SUBST(ENABLE_CDS) |
|
256 |
]) |
|
257 |
||
37402 | 258 |
############################################################################### |
259 |
# Set up all JVM features for each JVM variant. |
|
260 |
# |
|
261 |
AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_FEATURES], |
|
262 |
[ |
|
49582 | 263 |
# Prettify the VALID_JVM_FEATURES string |
264 |
BASIC_SORT_LIST(VALID_JVM_FEATURES, $VALID_JVM_FEATURES) |
|
265 |
||
37402 | 266 |
# The user can in some cases supply additional jvm features. For the custom |
267 |
# variant, this defines the entire variant. |
|
268 |
AC_ARG_WITH([jvm-features], [AS_HELP_STRING([--with-jvm-features], |
|
49582 | 269 |
[JVM features to enable (foo) or disable (-foo), separated by comma. Use '--help' to show possible values @<:@none@:>@])]) |
37402 | 270 |
if test "x$with_jvm_features" != x; then |
49582 | 271 |
AC_MSG_CHECKING([user specified JVM feature list]) |
272 |
USER_JVM_FEATURE_LIST=`$ECHO $with_jvm_features | $SED -e 's/,/ /g'` |
|
273 |
AC_MSG_RESULT([$user_jvm_feature_list]) |
|
274 |
# These features will be added to all variant defaults |
|
50266 | 275 |
JVM_FEATURES=`$ECHO $USER_JVM_FEATURE_LIST | $AWK '{ for (i=1; i<=NF; i++) if (!match($i, /^-.*/)) printf("%s ", $i) }'` |
49582 | 276 |
# These features will be removed from all variant defaults |
50266 | 277 |
DISABLED_JVM_FEATURES=`$ECHO $USER_JVM_FEATURE_LIST | $AWK '{ for (i=1; i<=NF; i++) if (match($i, /^-.*/)) printf("%s ", substr($i, 2))}'` |
49582 | 278 |
|
279 |
# Verify that the user has provided valid features |
|
50266 | 280 |
BASIC_GET_NON_MATCHING_VALUES(INVALID_FEATURES, $JVM_FEATURES $DISABLED_JVM_FEATURES, $VALID_JVM_FEATURES $DEPRECATED_JVM_FEATURES) |
49582 | 281 |
if test "x$INVALID_FEATURES" != x; then |
282 |
AC_MSG_NOTICE([Unknown JVM features specified: "$INVALID_FEATURES"]) |
|
283 |
AC_MSG_NOTICE([The available JVM features are: "$VALID_JVM_FEATURES"]) |
|
284 |
AC_MSG_ERROR([Cannot continue]) |
|
285 |
fi |
|
286 |
||
50266 | 287 |
# Check if the user has provided deprecated features |
288 |
BASIC_GET_MATCHING_VALUES(DEPRECATED_FEATURES, $JVM_FEATURES $DISABLED_JVM_FEATURES, $DEPRECATED_JVM_FEATURES) |
|
289 |
if test "x$DEPRECATED_FEATURES" != x; then |
|
290 |
AC_MSG_WARN([Deprecated JVM features specified (will be ignored): "$DEPRECATED_FEATURES"]) |
|
291 |
# Filter out deprecated features |
|
292 |
BASIC_GET_NON_MATCHING_VALUES(JVM_FEATURES, $JVM_FEATURES, $DEPRECATED_FEATURES) |
|
293 |
BASIC_GET_NON_MATCHING_VALUES(DISABLED_JVM_FEATURES, $DISABLED_JVM_FEATURES, $DEPRECATED_FEATURES) |
|
294 |
fi |
|
295 |
||
37402 | 296 |
fi |
297 |
||
42538 | 298 |
# Override hotspot cpu definitions for ARM platforms |
299 |
if test "x$OPENJDK_TARGET_CPU" = xarm; then |
|
300 |
HOTSPOT_TARGET_CPU=arm_32 |
|
301 |
HOTSPOT_TARGET_CPU_DEFINE="ARM32" |
|
302 |
elif test "x$OPENJDK_TARGET_CPU" = xaarch64 && test "x$HOTSPOT_TARGET_CPU_PORT" = xarm64; then |
|
303 |
HOTSPOT_TARGET_CPU=arm_64 |
|
304 |
HOTSPOT_TARGET_CPU_ARCH=arm |
|
305 |
fi |
|
306 |
||
37402 | 307 |
# Verify that dependencies are met for explicitly set features. |
308 |
if HOTSPOT_CHECK_JVM_FEATURE(jvmti) && ! HOTSPOT_CHECK_JVM_FEATURE(services); then |
|
309 |
AC_MSG_ERROR([Specified JVM feature 'jvmti' requires feature 'services']) |
|
20363 | 310 |
fi |
37402 | 311 |
|
312 |
if HOTSPOT_CHECK_JVM_FEATURE(management) && ! HOTSPOT_CHECK_JVM_FEATURE(nmt); then |
|
313 |
AC_MSG_ERROR([Specified JVM feature 'management' requires feature 'nmt']) |
|
314 |
fi |
|
315 |
||
39946
c82f919f4454
8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents:
39191
diff
changeset
|
316 |
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
|
317 |
AC_MSG_ERROR([Specified JVM feature 'jvmci' requires feature 'compiler2' or 'compiler1']) |
37402 | 318 |
fi |
319 |
||
49982 | 320 |
if HOTSPOT_CHECK_JVM_FEATURE(cmsgc) && ! HOTSPOT_CHECK_JVM_FEATURE(serialgc); then |
321 |
AC_MSG_ERROR([Specified JVM feature 'cmsgc' requires feature 'serialgc']) |
|
37402 | 322 |
fi |
323 |
||
50216 | 324 |
# Enable JFR by default, except for Zero, linux-sparcv9 and on minimal. |
325 |
if ! HOTSPOT_CHECK_JVM_VARIANT(zero); then |
|
51214 | 326 |
if test "x$OPENJDK_TARGET_OS" != xaix; then |
327 |
if test "x$OPENJDK_TARGET_OS" != xlinux || test "x$OPENJDK_TARGET_CPU" != xsparcv9; then |
|
328 |
NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES jfr" |
|
329 |
fi |
|
50216 | 330 |
fi |
50113 | 331 |
fi |
332 |
||
50525
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
333 |
# Only enable ZGC on Linux x86_64 |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
334 |
AC_MSG_CHECKING([if zgc should be built]) |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
335 |
if HOTSPOT_CHECK_JVM_FEATURE(zgc); then |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
336 |
if test "x$OPENJDK_TARGET_OS" = "xlinux" && test "x$OPENJDK_TARGET_CPU" = "xx86_64"; then |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
337 |
AC_MSG_RESULT([yes]) |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
338 |
else |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
339 |
DISABLED_JVM_FEATURES="$DISABLED_JVM_FEATURES zgc" |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
340 |
AC_MSG_RESULT([no, platform not supported]) |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
341 |
fi |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
342 |
else |
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50523
diff
changeset
|
343 |
AC_MSG_RESULT([no]) |
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 | 346 |
# Disable unsupported GCs for Zero |
347 |
if HOTSPOT_CHECK_JVM_VARIANT(zero); then |
|
348 |
DISABLED_JVM_FEATURES="$DISABLED_JVM_FEATURES epsilongc g1gc zgc" |
|
349 |
fi |
|
350 |
||
37402 | 351 |
# Turn on additional features based on other parts of configure |
352 |
if test "x$INCLUDE_DTRACE" = "xtrue"; then |
|
353 |
JVM_FEATURES="$JVM_FEATURES dtrace" |
|
354 |
else |
|
355 |
if HOTSPOT_CHECK_JVM_FEATURE(dtrace); then |
|
356 |
AC_MSG_ERROR([To enable dtrace, you must use --enable-dtrace]) |
|
14810 | 357 |
fi |
20363 | 358 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
359 |
|
37402 | 360 |
if test "x$STATIC_BUILD" = "xtrue"; then |
361 |
JVM_FEATURES="$JVM_FEATURES static-build" |
|
20363 | 362 |
else |
37402 | 363 |
if HOTSPOT_CHECK_JVM_FEATURE(static-build); then |
364 |
AC_MSG_ERROR([To enable static-build, you must use --enable-static-build]) |
|
365 |
fi |
|
366 |
fi |
|
367 |
||
47687 | 368 |
if ! HOTSPOT_CHECK_JVM_VARIANT(zero); then |
37402 | 369 |
if HOTSPOT_CHECK_JVM_FEATURE(zero); then |
47687 | 370 |
AC_MSG_ERROR([To enable zero, you must use --with-jvm-variants=zero]) |
37402 | 371 |
fi |
372 |
fi |
|
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 | 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 | 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 | 441 |
AC_MSG_CHECKING([if aot should be enabled]) |
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 | 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 | 459 |
fi |
460 |
else |
|
51214 | 461 |
if test "x$enable_aot" = "xno" || test "x$DISABLE_AOT" = "xaot"; then |
42532 | 462 |
AC_MSG_RESULT([no, forced]) |
463 |
else |
|
464 |
AC_MSG_RESULT([no]) |
|
465 |
fi |
|
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 | 470 |
fi |
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 | 474 |
if test "x$OPENJDK_TARGET_CPU" = xarm ; then |
475 |
# Default to use link time optimizations on minimal on arm |
|
476 |
JVM_FEATURES_link_time_opt="link-time-opt" |
|
477 |
else |
|
478 |
JVM_FEATURES_link_time_opt="" |
|
479 |
fi |
|
480 |
||
37402 | 481 |
# All variants but minimal (and custom) get these features |
50523
7b7c75d87f9b
8204180: Implementation: JEP 318: Epsilon, A No-Op Garbage Collector
shade
parents:
50266
diff
changeset
|
482 |
NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES cmsgc g1gc parallelgc serialgc epsilongc jni-check jvmti management nmt services vm-structs" |
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 | 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 | 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 | 527 |
|
50113 | 528 |
# Enable features depending on variant. |
42532 | 529 |
JVM_FEATURES_server="compiler1 compiler2 $NON_MINIMAL_FEATURES $JVM_FEATURES $JVM_FEATURES_jvmci $JVM_FEATURES_aot $JVM_FEATURES_graal" |
51068 | 530 |
JVM_FEATURES_client="compiler1 $NON_MINIMAL_FEATURES $JVM_FEATURES" |
37402 | 531 |
JVM_FEATURES_core="$NON_MINIMAL_FEATURES $JVM_FEATURES" |
49982 | 532 |
JVM_FEATURES_minimal="compiler1 minimal serialgc $JVM_FEATURES $JVM_FEATURES_link_time_opt" |
37402 | 533 |
JVM_FEATURES_zero="zero $NON_MINIMAL_FEATURES $JVM_FEATURES" |
534 |
JVM_FEATURES_custom="$JVM_FEATURES" |
|
535 |
||
536 |
AC_SUBST(JVM_FEATURES_server) |
|
537 |
AC_SUBST(JVM_FEATURES_client) |
|
538 |
AC_SUBST(JVM_FEATURES_core) |
|
539 |
AC_SUBST(JVM_FEATURES_minimal) |
|
540 |
AC_SUBST(JVM_FEATURES_zero) |
|
541 |
AC_SUBST(JVM_FEATURES_custom) |
|
542 |
||
543 |
# Used for verification of Makefiles by check-jvm-feature |
|
544 |
AC_SUBST(VALID_JVM_FEATURES) |
|
545 |
]) |
|
546 |
||
547 |
############################################################################### |
|
49582 | 548 |
# Finalize JVM features once all setup is complete, including custom setup. |
37402 | 549 |
# |
49582 | 550 |
AC_DEFUN_ONCE([HOTSPOT_FINALIZE_JVM_FEATURES], |
37402 | 551 |
[ |
552 |
for variant in $JVM_VARIANTS; do |
|
553 |
AC_MSG_CHECKING([JVM features for JVM variant '$variant']) |
|
554 |
features_var_name=JVM_FEATURES_$variant |
|
49582 | 555 |
JVM_FEATURES_FOR_VARIANT=${!features_var_name} |
556 |
||
557 |
# Filter out user-requested disabled features |
|
558 |
BASIC_GET_NON_MATCHING_VALUES(JVM_FEATURES_FOR_VARIANT, $JVM_FEATURES_FOR_VARIANT, $DISABLED_JVM_FEATURES) |
|
559 |
||
560 |
# Keep feature lists sorted and free of duplicates |
|
561 |
BASIC_SORT_LIST(JVM_FEATURES_FOR_VARIANT, $JVM_FEATURES_FOR_VARIANT) |
|
562 |
||
563 |
# Update real feature set variable |
|
564 |
eval $features_var_name='"'$JVM_FEATURES_FOR_VARIANT'"' |
|
565 |
AC_MSG_RESULT(["$JVM_FEATURES_FOR_VARIANT"]) |
|
566 |
||
49982 | 567 |
# Verify that we have at least one gc selected |
568 |
GC_FEATURES=`$ECHO $JVM_FEATURES_FOR_VARIANT | $GREP gc` |
|
569 |
if test "x$GC_FEATURES" = x; then |
|
570 |
AC_MSG_WARN([Invalid JVM features: No gc selected for variant $variant.]) |
|
571 |
fi |
|
572 |
||
49582 | 573 |
# Validate features (for configure script errors, not user errors) |
49705 | 574 |
BASIC_GET_NON_MATCHING_VALUES(INVALID_FEATURES, $JVM_FEATURES_FOR_VARIANT, $VALID_JVM_FEATURES) |
37402 | 575 |
if test "x$INVALID_FEATURES" != x; then |
49582 | 576 |
AC_MSG_ERROR([Internal configure script error. Invalid JVM feature(s): $INVALID_FEATURES]) |
37402 | 577 |
fi |
578 |
done |
|
579 |
]) |
|
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
580 |
|
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
581 |
################################################################################ |
42538 | 582 |
# |
583 |
# Specify which sources will be used to build the 64-bit ARM port |
|
584 |
# |
|
585 |
# --with-cpu-port=arm64 will use hotspot/src/cpu/arm |
|
586 |
# --with-cpu-port=aarch64 will use hotspot/src/cpu/aarch64 |
|
587 |
# |
|
588 |
AC_DEFUN([SETUP_HOTSPOT_TARGET_CPU_PORT], |
|
589 |
[ |
|
590 |
AC_ARG_WITH(cpu-port, [AS_HELP_STRING([--with-cpu-port], |
|
591 |
[specify sources to use for Hotspot 64-bit ARM port (arm64,aarch64) @<:@aarch64@:>@ ])]) |
|
592 |
||
593 |
if test "x$with_cpu_port" != x; then |
|
594 |
if test "x$OPENJDK_TARGET_CPU" != xaarch64; then |
|
595 |
AC_MSG_ERROR([--with-cpu-port only available on aarch64]) |
|
596 |
fi |
|
597 |
if test "x$with_cpu_port" != xarm64 && \ |
|
598 |
test "x$with_cpu_port" != xaarch64; then |
|
599 |
AC_MSG_ERROR([--with-cpu-port must specify arm64 or aarch64]) |
|
600 |
fi |
|
601 |
HOTSPOT_TARGET_CPU_PORT="$with_cpu_port" |
|
602 |
fi |
|
603 |
]) |
|
604 |
||
605 |
||
606 |
################################################################################ |
|
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
607 |
# Check if gtest should be built |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
608 |
# |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
609 |
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_GTEST], |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
610 |
[ |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
611 |
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
|
612 |
[Disables building of the Hotspot unit tests @<:@enabled@:>@])]) |
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
613 |
|
47217 | 614 |
if test -e "${TOPDIR}/test/hotspot/gtest"; then |
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
615 |
GTEST_DIR_EXISTS="true" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
616 |
else |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
617 |
GTEST_DIR_EXISTS="false" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
618 |
fi |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
619 |
|
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
620 |
AC_MSG_CHECKING([if Hotspot gtest unit tests should be built]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
621 |
if test "x$enable_hotspot_gtest" = "xyes"; then |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
622 |
if test "x$GTEST_DIR_EXISTS" = "xtrue"; then |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
623 |
AC_MSG_RESULT([yes, forced]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
624 |
BUILD_GTEST="true" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
625 |
else |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
626 |
AC_MSG_ERROR([Cannot build gtest without the test source]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
627 |
fi |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
628 |
elif test "x$enable_hotspot_gtest" = "xno"; then |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
629 |
AC_MSG_RESULT([no, forced]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
630 |
BUILD_GTEST="false" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
631 |
elif test "x$enable_hotspot_gtest" = "x"; then |
42855 | 632 |
if test "x$GTEST_DIR_EXISTS" = "xtrue"; then |
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
633 |
AC_MSG_RESULT([yes]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
634 |
BUILD_GTEST="true" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
635 |
else |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
636 |
AC_MSG_RESULT([no]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
637 |
BUILD_GTEST="false" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
638 |
fi |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
639 |
else |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
640 |
AC_MSG_ERROR([--enable-gtest must be either yes or no]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
641 |
fi |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
642 |
|
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
643 |
AC_SUBST(BUILD_GTEST) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
644 |
]) |