author | mkos |
Fri, 21 Feb 2014 17:37:39 +0100 | |
changeset 23962 | 99b559663ecb |
parent 23424 | 65039fb99fda |
child 25616 | 5730ea123552 |
permissions | -rw-r--r-- |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1 |
# |
22714
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22709
diff
changeset
|
2 |
# Copyright (c) 2011, 2014, 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 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
26 |
AC_DEFUN_ONCE([JDKOPT_SETUP_JDK_VARIANT], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
27 |
[ |
20363 | 28 |
############################################################################### |
29 |
# |
|
30 |
# Check which variant of the JDK that we want to build. |
|
31 |
# Currently we have: |
|
32 |
# normal: standard edition |
|
33 |
# but the custom make system may add other variants |
|
34 |
# |
|
35 |
# Effectively the JDK variant gives a name to a specific set of |
|
36 |
# modules to compile into the JDK. In the future, these modules |
|
37 |
# might even be Jigsaw modules. |
|
38 |
# |
|
39 |
AC_MSG_CHECKING([which variant of the JDK to build]) |
|
40 |
AC_ARG_WITH([jdk-variant], [AS_HELP_STRING([--with-jdk-variant], |
|
41 |
[JDK variant to build (normal) @<:@normal@:>@])]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
42 |
|
20363 | 43 |
if test "x$with_jdk_variant" = xnormal || test "x$with_jdk_variant" = x; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
44 |
JDK_VARIANT="normal" |
20363 | 45 |
else |
13697 | 46 |
AC_MSG_ERROR([The available JDK variants are: normal]) |
20363 | 47 |
fi |
13697 | 48 |
|
20363 | 49 |
AC_SUBST(JDK_VARIANT) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
50 |
|
20363 | 51 |
AC_MSG_RESULT([$JDK_VARIANT]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
52 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
53 |
|
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
54 |
AC_DEFUN_ONCE([JDKOPT_SETUP_JVM_INTERPRETER], |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
55 |
[ |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
56 |
############################################################################### |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
57 |
# |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
58 |
# Check which interpreter of the JVM we want to build. |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
59 |
# Currently we have: |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
60 |
# template: Template interpreter (the default) |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
61 |
# cpp : C++ interpreter |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
62 |
AC_MSG_CHECKING([which interpreter of the JVM to build]) |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
63 |
AC_ARG_WITH([jvm-interpreter], [AS_HELP_STRING([--with-jvm-interpreter], |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
64 |
[JVM interpreter to build (template, cpp) @<:@template@:>@])]) |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
65 |
|
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
66 |
if test "x$with_jvm_interpreter" = x; then |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
67 |
with_jvm_interpreter="template" |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
68 |
fi |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
69 |
|
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
70 |
JVM_INTERPRETER="$with_jvm_interpreter" |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
71 |
|
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
72 |
if test "x$JVM_INTERPRETER" != xtemplate && test "x$JVM_INTERPRETER" != xcpp; then |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
73 |
AC_MSG_ERROR([The available JVM interpreters are: template, cpp]) |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
74 |
fi |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
75 |
|
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
76 |
AC_SUBST(JVM_INTERPRETER) |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
77 |
|
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
78 |
AC_MSG_RESULT([$with_jvm_interpreter]) |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
79 |
]) |
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
80 |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
81 |
AC_DEFUN_ONCE([JDKOPT_SETUP_JVM_VARIANTS], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
82 |
[ |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
83 |
|
20363 | 84 |
############################################################################### |
85 |
# |
|
86 |
# Check which variants of the JVM that we want to build. |
|
87 |
# Currently we have: |
|
88 |
# server: normal interpreter and a tiered C1/C2 compiler |
|
89 |
# client: normal interpreter and C1 (no C2 compiler) (only 32-bit platforms) |
|
90 |
# minimal1: reduced form of client with optional VM services and features stripped out |
|
91 |
# kernel: kernel footprint JVM that passes the TCK without major performance problems, |
|
92 |
# ie normal interpreter and C1, only the serial GC, kernel jvmti etc |
|
93 |
# zero: no machine code interpreter, no compiler |
|
94 |
# zeroshark: zero interpreter and shark/llvm compiler backend |
|
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
95 |
# core: interpreter only, no compiler (only works on some platforms) |
20363 | 96 |
AC_MSG_CHECKING([which variants of the JVM to build]) |
97 |
AC_ARG_WITH([jvm-variants], [AS_HELP_STRING([--with-jvm-variants], |
|
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
98 |
[JVM variants (separated by commas) to build (server, client, minimal1, kernel, zero, zeroshark, core) @<:@server@:>@])]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
99 |
|
20363 | 100 |
if test "x$with_jvm_variants" = x; then |
101 |
with_jvm_variants="server" |
|
102 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
103 |
|
20363 | 104 |
JVM_VARIANTS=",$with_jvm_variants," |
22467 | 105 |
TEST_VARIANTS=`$ECHO "$JVM_VARIANTS" | $SED -e 's/server,//' -e 's/client,//' -e 's/minimal1,//' -e 's/kernel,//' -e 's/zero,//' -e 's/zeroshark,//' -e 's/core,//'` |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
106 |
|
20363 | 107 |
if test "x$TEST_VARIANTS" != "x,"; then |
22467 | 108 |
AC_MSG_ERROR([The available JVM variants are: server, client, minimal1, kernel, zero, zeroshark, core]) |
20363 | 109 |
fi |
110 |
AC_MSG_RESULT([$with_jvm_variants]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
111 |
|
20363 | 112 |
JVM_VARIANT_SERVER=`$ECHO "$JVM_VARIANTS" | $SED -e '/,server,/!s/.*/false/g' -e '/,server,/s/.*/true/g'` |
113 |
JVM_VARIANT_CLIENT=`$ECHO "$JVM_VARIANTS" | $SED -e '/,client,/!s/.*/false/g' -e '/,client,/s/.*/true/g'` |
|
114 |
JVM_VARIANT_MINIMAL1=`$ECHO "$JVM_VARIANTS" | $SED -e '/,minimal1,/!s/.*/false/g' -e '/,minimal1,/s/.*/true/g'` |
|
115 |
JVM_VARIANT_KERNEL=`$ECHO "$JVM_VARIANTS" | $SED -e '/,kernel,/!s/.*/false/g' -e '/,kernel,/s/.*/true/g'` |
|
116 |
JVM_VARIANT_ZERO=`$ECHO "$JVM_VARIANTS" | $SED -e '/,zero,/!s/.*/false/g' -e '/,zero,/s/.*/true/g'` |
|
117 |
JVM_VARIANT_ZEROSHARK=`$ECHO "$JVM_VARIANTS" | $SED -e '/,zeroshark,/!s/.*/false/g' -e '/,zeroshark,/s/.*/true/g'` |
|
22467 | 118 |
JVM_VARIANT_CORE=`$ECHO "$JVM_VARIANTS" | $SED -e '/,core,/!s/.*/false/g' -e '/,core,/s/.*/true/g'` |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
119 |
|
20363 | 120 |
if test "x$JVM_VARIANT_CLIENT" = xtrue; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
121 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
20363 | 122 |
AC_MSG_ERROR([You cannot build a client JVM for a 64-bit machine.]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
123 |
fi |
20363 | 124 |
fi |
125 |
if test "x$JVM_VARIANT_KERNEL" = xtrue; then |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
126 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
20363 | 127 |
AC_MSG_ERROR([You cannot build a kernel JVM for a 64-bit machine.]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
128 |
fi |
20363 | 129 |
fi |
130 |
if test "x$JVM_VARIANT_MINIMAL1" = xtrue; then |
|
14810 | 131 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
20363 | 132 |
AC_MSG_ERROR([You cannot build a minimal JVM for a 64-bit machine.]) |
14810 | 133 |
fi |
20363 | 134 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
135 |
|
20363 | 136 |
# Replace the commas with AND for use in the build directory name. |
22181
0fc1d3eb4358
8031709: Configure --with-jvm-variants=client, server, x produces default outputdir containing comma
erikj
parents:
22176
diff
changeset
|
137 |
ANDED_JVM_VARIANTS=`$ECHO "$JVM_VARIANTS" | $SED -e 's/^,//' -e 's/,$//' -e 's/,/AND/g'` |
22467 | 138 |
COUNT_VARIANTS=`$ECHO "$JVM_VARIANTS" | $SED -e 's/server,/1/' -e 's/client,/1/' -e 's/minimal1,/1/' -e 's/kernel,/1/' -e 's/zero,/1/' -e 's/zeroshark,/1/' -e 's/core,/1/'` |
20363 | 139 |
if test "x$COUNT_VARIANTS" != "x,1"; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
140 |
BUILDING_MULTIPLE_JVM_VARIANTS=yes |
20363 | 141 |
else |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
142 |
BUILDING_MULTIPLE_JVM_VARIANTS=no |
20363 | 143 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
144 |
|
20363 | 145 |
AC_SUBST(JVM_VARIANTS) |
146 |
AC_SUBST(JVM_VARIANT_SERVER) |
|
147 |
AC_SUBST(JVM_VARIANT_CLIENT) |
|
148 |
AC_SUBST(JVM_VARIANT_MINIMAL1) |
|
149 |
AC_SUBST(JVM_VARIANT_KERNEL) |
|
150 |
AC_SUBST(JVM_VARIANT_ZERO) |
|
151 |
AC_SUBST(JVM_VARIANT_ZEROSHARK) |
|
22467 | 152 |
AC_SUBST(JVM_VARIANT_CORE) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
153 |
|
20363 | 154 |
INCLUDE_SA=true |
155 |
if test "x$JVM_VARIANT_ZERO" = xtrue ; then |
|
16581
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
16423
diff
changeset
|
156 |
INCLUDE_SA=false |
20363 | 157 |
fi |
158 |
if test "x$JVM_VARIANT_ZEROSHARK" = xtrue ; then |
|
16581
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
16423
diff
changeset
|
159 |
INCLUDE_SA=false |
20363 | 160 |
fi |
22467 | 161 |
if test "x$VAR_CPU" = xppc64 ; then |
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
162 |
INCLUDE_SA=false |
22467 | 163 |
fi |
20363 | 164 |
AC_SUBST(INCLUDE_SA) |
16581
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
16423
diff
changeset
|
165 |
|
20363 | 166 |
if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then |
167 |
MACOSX_UNIVERSAL="true" |
|
168 |
fi |
|
13697 | 169 |
|
20363 | 170 |
AC_SUBST(MACOSX_UNIVERSAL) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
171 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
172 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
173 |
AC_DEFUN_ONCE([JDKOPT_SETUP_DEBUG_LEVEL], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
174 |
[ |
20363 | 175 |
############################################################################### |
176 |
# |
|
177 |
# Set the debug level |
|
178 |
# release: no debug information, all optimizations, no asserts. |
|
23424
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
179 |
# optimized: no debug information, all optimizations, no asserts, HotSpot target is 'optimized'. |
20363 | 180 |
# fastdebug: debug information (-g), all optimizations, all asserts |
181 |
# slowdebug: debug information (-g), no optimizations, all asserts |
|
182 |
# |
|
183 |
DEBUG_LEVEL="release" |
|
184 |
AC_MSG_CHECKING([which debug level to use]) |
|
185 |
AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug], |
|
186 |
[set the debug level to fastdebug (shorthand for --with-debug-level=fastdebug) @<:@disabled@:>@])], |
|
187 |
[ |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
188 |
ENABLE_DEBUG="${enableval}" |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
189 |
DEBUG_LEVEL="fastdebug" |
20363 | 190 |
], [ENABLE_DEBUG="no"]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
191 |
|
20363 | 192 |
AC_ARG_WITH([debug-level], [AS_HELP_STRING([--with-debug-level], |
23424
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
193 |
[set the debug level (release, fastdebug, slowdebug, optimized (HotSpot build only)) @<:@release@:>@])], |
20363 | 194 |
[ |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
195 |
DEBUG_LEVEL="${withval}" |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
196 |
if test "x$ENABLE_DEBUG" = xyes; then |
20363 | 197 |
AC_MSG_ERROR([You cannot use both --enable-debug and --with-debug-level at the same time.]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
198 |
fi |
20363 | 199 |
]) |
200 |
AC_MSG_RESULT([$DEBUG_LEVEL]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
201 |
|
20363 | 202 |
if test "x$DEBUG_LEVEL" != xrelease && \ |
23424
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
203 |
test "x$DEBUG_LEVEL" != xoptimized && \ |
20363 | 204 |
test "x$DEBUG_LEVEL" != xfastdebug && \ |
205 |
test "x$DEBUG_LEVEL" != xslowdebug; then |
|
206 |
AC_MSG_ERROR([Allowed debug levels are: release, fastdebug and slowdebug]) |
|
207 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
208 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
209 |
|
20363 | 210 |
############################################################################### |
211 |
# |
|
212 |
# Setup legacy vars/targets and new vars to deal with different debug levels. |
|
213 |
# |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
214 |
|
20363 | 215 |
case $DEBUG_LEVEL in |
216 |
release ) |
|
217 |
VARIANT="OPT" |
|
218 |
FASTDEBUG="false" |
|
219 |
DEBUG_CLASSFILES="false" |
|
220 |
BUILD_VARIANT_RELEASE="" |
|
221 |
HOTSPOT_DEBUG_LEVEL="product" |
|
222 |
HOTSPOT_EXPORT="product" |
|
223 |
;; |
|
224 |
fastdebug ) |
|
225 |
VARIANT="DBG" |
|
226 |
FASTDEBUG="true" |
|
227 |
DEBUG_CLASSFILES="true" |
|
228 |
BUILD_VARIANT_RELEASE="-fastdebug" |
|
229 |
HOTSPOT_DEBUG_LEVEL="fastdebug" |
|
230 |
HOTSPOT_EXPORT="fastdebug" |
|
231 |
;; |
|
232 |
slowdebug ) |
|
233 |
VARIANT="DBG" |
|
234 |
FASTDEBUG="false" |
|
235 |
DEBUG_CLASSFILES="true" |
|
236 |
BUILD_VARIANT_RELEASE="-debug" |
|
237 |
HOTSPOT_DEBUG_LEVEL="jvmg" |
|
238 |
HOTSPOT_EXPORT="debug" |
|
239 |
;; |
|
23424
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
240 |
optimized ) |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
241 |
VARIANT="OPT" |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
242 |
FASTDEBUG="false" |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
243 |
DEBUG_CLASSFILES="false" |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
244 |
BUILD_VARIANT_RELEASE="-optimized" |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
245 |
HOTSPOT_DEBUG_LEVEL="optimized" |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
246 |
HOTSPOT_EXPORT="optimized" |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
247 |
;; |
20363 | 248 |
esac |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
249 |
|
23424
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
250 |
# The debug level 'optimized' is a little special because it is currently only |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
251 |
# applicable to the HotSpot build where it means to build a completely |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
252 |
# optimized version of the VM without any debugging code (like for the |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
253 |
# 'release' debug level which is called 'product' in the HotSpot build) but |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
254 |
# with the exception that it can contain additional code which is otherwise |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
255 |
# protected by '#ifndef PRODUCT' macros. These 'optimized' builds are used to |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
256 |
# test new and/or experimental features which are not intended for customer |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
257 |
# shipment. Because these new features need to be tested and benchmarked in |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
258 |
# real world scenarios, we want to build the containing JDK at the 'release' |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
259 |
# debug level. |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
260 |
if test "x$DEBUG_LEVEL" = xoptimized; then |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
261 |
DEBUG_LEVEL="release" |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
262 |
fi |
65039fb99fda
8037298: Export HotSpots 'optimized' (i.e. not-product) configuration in the top-level configure/makefile
simonis
parents:
22721
diff
changeset
|
263 |
|
20363 | 264 |
##### |
265 |
# Generate the legacy makefile targets for hotspot. |
|
266 |
# The hotspot api for selecting the build artifacts, really, needs to be improved. |
|
267 |
# JDK-7195896 will fix this on the hotspot side by using the JVM_VARIANT_* variables to |
|
268 |
# determine what needs to be built. All we will need to set here is all_product, all_fastdebug etc |
|
269 |
# But until then ... |
|
270 |
HOTSPOT_TARGET="" |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
271 |
|
20363 | 272 |
if test "x$JVM_VARIANT_SERVER" = xtrue; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
273 |
HOTSPOT_TARGET="$HOTSPOT_TARGET${HOTSPOT_DEBUG_LEVEL} " |
20363 | 274 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
275 |
|
20363 | 276 |
if test "x$JVM_VARIANT_CLIENT" = xtrue; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
277 |
HOTSPOT_TARGET="$HOTSPOT_TARGET${HOTSPOT_DEBUG_LEVEL}1 " |
20363 | 278 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
279 |
|
20363 | 280 |
if test "x$JVM_VARIANT_MINIMAL1" = xtrue; then |
14810 | 281 |
HOTSPOT_TARGET="$HOTSPOT_TARGET${HOTSPOT_DEBUG_LEVEL}minimal1 " |
20363 | 282 |
fi |
14810 | 283 |
|
20363 | 284 |
if test "x$JVM_VARIANT_KERNEL" = xtrue; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
285 |
HOTSPOT_TARGET="$HOTSPOT_TARGET${HOTSPOT_DEBUG_LEVEL}kernel " |
20363 | 286 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
287 |
|
20363 | 288 |
if test "x$JVM_VARIANT_ZERO" = xtrue; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
289 |
HOTSPOT_TARGET="$HOTSPOT_TARGET${HOTSPOT_DEBUG_LEVEL}zero " |
20363 | 290 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
291 |
|
20363 | 292 |
if test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
293 |
HOTSPOT_TARGET="$HOTSPOT_TARGET${HOTSPOT_DEBUG_LEVEL}shark " |
20363 | 294 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
295 |
|
22467 | 296 |
if test "x$JVM_VARIANT_CORE" = xtrue; then |
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
297 |
HOTSPOT_TARGET="$HOTSPOT_TARGET${HOTSPOT_DEBUG_LEVEL}core " |
22467 | 298 |
fi |
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
299 |
|
20363 | 300 |
HOTSPOT_TARGET="$HOTSPOT_TARGET docs export_$HOTSPOT_EXPORT" |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
301 |
|
20363 | 302 |
# On Macosx universal binaries are produced, but they only contain |
303 |
# 64 bit intel. This invalidates control of which jvms are built |
|
304 |
# from configure, but only server is valid anyway. Fix this |
|
305 |
# when hotspot makefiles are rewritten. |
|
306 |
if test "x$MACOSX_UNIVERSAL" = xtrue; then |
|
15054
e649ff651503
8004490: build-infra: mac: hotspot is always built in product, regardless of --with-debug-level setting
erikj
parents:
14810
diff
changeset
|
307 |
HOTSPOT_TARGET=universal_${HOTSPOT_EXPORT} |
20363 | 308 |
fi |
13697 | 309 |
|
20363 | 310 |
##### |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
311 |
|
20363 | 312 |
AC_SUBST(DEBUG_LEVEL) |
313 |
AC_SUBST(VARIANT) |
|
314 |
AC_SUBST(FASTDEBUG) |
|
315 |
AC_SUBST(DEBUG_CLASSFILES) |
|
316 |
AC_SUBST(BUILD_VARIANT_RELEASE) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
317 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
318 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
319 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
320 |
############################################################################### |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
321 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
322 |
# Should we build only OpenJDK even if closed sources are present? |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
323 |
# |
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
324 |
AC_DEFUN_ONCE([JDKOPT_SETUP_OPEN_OR_CUSTOM], |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
325 |
[ |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
326 |
AC_ARG_ENABLE([openjdk-only], [AS_HELP_STRING([--enable-openjdk-only], |
20363 | 327 |
[suppress building custom source even if present @<:@disabled@:>@])],,[enable_openjdk_only="no"]) |
14111 | 328 |
|
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
329 |
AC_MSG_CHECKING([for presence of closed sources]) |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
330 |
if test -d "$SRC_ROOT/jdk/src/closed"; then |
14111 | 331 |
CLOSED_SOURCE_PRESENT=yes |
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
332 |
else |
14111 | 333 |
CLOSED_SOURCE_PRESENT=no |
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
334 |
fi |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
335 |
AC_MSG_RESULT([$CLOSED_SOURCE_PRESENT]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
336 |
|
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
337 |
AC_MSG_CHECKING([if closed source is suppressed (openjdk-only)]) |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
338 |
SUPPRESS_CLOSED_SOURCE="$enable_openjdk_only" |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
339 |
AC_MSG_RESULT([$SUPPRESS_CLOSED_SOURCE]) |
14111 | 340 |
|
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
341 |
if test "x$CLOSED_SOURCE_PRESENT" = xno; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
342 |
OPENJDK=true |
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
343 |
if test "x$SUPPRESS_CLOSED_SOURCE" = "xyes"; then |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
344 |
AC_MSG_WARN([No closed source present, --enable-openjdk-only makes no sense]) |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
345 |
fi |
14111 | 346 |
else |
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
347 |
if test "x$SUPPRESS_CLOSED_SOURCE" = "xyes"; then |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
348 |
OPENJDK=true |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
349 |
else |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
350 |
OPENJDK=false |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
351 |
fi |
14111 | 352 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
353 |
|
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
354 |
if test "x$OPENJDK" = "xtrue"; then |
14111 | 355 |
SET_OPENJDK="OPENJDK=true" |
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
356 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
357 |
|
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
358 |
AC_SUBST(SET_OPENJDK) |
22714
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22709
diff
changeset
|
359 |
|
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22709
diff
changeset
|
360 |
# custom-make-dir is deprecated. Please use your custom-hook.m4 to override |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22709
diff
changeset
|
361 |
# the IncludeCustomExtension macro. |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22709
diff
changeset
|
362 |
BASIC_DEPRECATED_ARG_WITH(custom-make-dir) |
15069
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
363 |
]) |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
364 |
|
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
365 |
AC_DEFUN_ONCE([JDKOPT_SETUP_JDK_OPTIONS], |
c6dab988d808
8005850: build-infra: Make --enable-openjdk-only really disable custom
erikj
parents:
15067
diff
changeset
|
366 |
[ |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
367 |
|
20363 | 368 |
############################################################################### |
369 |
# |
|
370 |
# Should we build a JDK/JVM with headful support (ie a graphical ui)? |
|
371 |
# We always build headless support. |
|
372 |
# |
|
373 |
AC_MSG_CHECKING([headful support]) |
|
374 |
AC_ARG_ENABLE([headful], [AS_HELP_STRING([--disable-headful], |
|
375 |
[disable building headful support (graphical UI support) @<:@enabled@:>@])], |
|
376 |
[SUPPORT_HEADFUL=${enable_headful}], [SUPPORT_HEADFUL=yes]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
377 |
|
20363 | 378 |
SUPPORT_HEADLESS=yes |
379 |
BUILD_HEADLESS="BUILD_HEADLESS:=true" |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
380 |
|
20363 | 381 |
if test "x$SUPPORT_HEADFUL" = xyes; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
382 |
# We are building both headful and headless. |
20273 | 383 |
headful_msg="include support for both headful and headless" |
20363 | 384 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
385 |
|
20363 | 386 |
if test "x$SUPPORT_HEADFUL" = xno; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
387 |
# Thus we are building headless only. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
388 |
BUILD_HEADLESS="BUILD_HEADLESS:=true" |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
389 |
headful_msg="headless only" |
20363 | 390 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
391 |
|
20363 | 392 |
AC_MSG_RESULT([$headful_msg]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
393 |
|
20363 | 394 |
AC_SUBST(SUPPORT_HEADLESS) |
395 |
AC_SUBST(SUPPORT_HEADFUL) |
|
396 |
AC_SUBST(BUILD_HEADLESS) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
397 |
|
20363 | 398 |
# Control wether Hotspot runs Queens test after build. |
399 |
AC_ARG_ENABLE([hotspot-test-in-build], [AS_HELP_STRING([--enable-hotspot-test-in-build], |
|
400 |
[run the Queens test after Hotspot build @<:@disabled@:>@])],, |
|
401 |
[enable_hotspot_test_in_build=no]) |
|
402 |
if test "x$enable_hotspot_test_in_build" = "xyes"; then |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
403 |
TEST_IN_BUILD=true |
20363 | 404 |
else |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
405 |
TEST_IN_BUILD=false |
20363 | 406 |
fi |
407 |
AC_SUBST(TEST_IN_BUILD) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
408 |
|
20363 | 409 |
############################################################################### |
410 |
# |
|
411 |
# Choose cacerts source file |
|
412 |
# |
|
413 |
AC_ARG_WITH(cacerts-file, [AS_HELP_STRING([--with-cacerts-file], |
|
414 |
[specify alternative cacerts file])]) |
|
415 |
if test "x$with_cacerts_file" != x; then |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
416 |
CACERTS_FILE=$with_cacerts_file |
20363 | 417 |
else |
17819
cd99349ffc0d
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
17663
diff
changeset
|
418 |
CACERTS_FILE=${SRC_ROOT}/jdk/src/share/lib/security/cacerts |
20363 | 419 |
fi |
420 |
AC_SUBST(CACERTS_FILE) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
421 |
|
20363 | 422 |
############################################################################### |
423 |
# |
|
424 |
# Enable or disable unlimited crypto |
|
425 |
# |
|
426 |
AC_ARG_ENABLE(unlimited-crypto, [AS_HELP_STRING([--enable-unlimited-crypto], |
|
427 |
[Enable unlimited crypto policy @<:@disabled@:>@])],, |
|
428 |
[enable_unlimited_crypto=no]) |
|
429 |
if test "x$enable_unlimited_crypto" = "xyes"; then |
|
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
430 |
UNLIMITED_CRYPTO=true |
20363 | 431 |
else |
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
432 |
UNLIMITED_CRYPTO=false |
20363 | 433 |
fi |
434 |
AC_SUBST(UNLIMITED_CRYPTO) |
|
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
435 |
|
20363 | 436 |
############################################################################### |
437 |
# |
|
438 |
# Enable or disable the elliptic curve crypto implementation |
|
439 |
# |
|
440 |
AC_DEFUN_ONCE([JDKOPT_DETECT_INTREE_EC], |
|
441 |
[ |
|
442 |
AC_MSG_CHECKING([if elliptic curve crypto implementation is present]) |
|
15914
1338d1e0e058
8010030: Allow configure to detect if EC implementation is present
omajid
parents:
15180
diff
changeset
|
443 |
|
20363 | 444 |
if test -d "${SRC_ROOT}/jdk/src/share/native/sun/security/ec/impl"; then |
445 |
ENABLE_INTREE_EC=yes |
|
446 |
AC_MSG_RESULT([yes]) |
|
447 |
else |
|
448 |
ENABLE_INTREE_EC=no |
|
449 |
AC_MSG_RESULT([no]) |
|
450 |
fi |
|
15914
1338d1e0e058
8010030: Allow configure to detect if EC implementation is present
omajid
parents:
15180
diff
changeset
|
451 |
|
20363 | 452 |
AC_SUBST(ENABLE_INTREE_EC) |
453 |
]) |
|
15914
1338d1e0e058
8010030: Allow configure to detect if EC implementation is present
omajid
parents:
15180
diff
changeset
|
454 |
|
20363 | 455 |
############################################################################### |
456 |
# |
|
22709
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
457 |
# --enable-rmiconnector-iiop |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
458 |
# |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
459 |
AC_ARG_ENABLE(rmiconnector-iiop, [AS_HELP_STRING([--enable-rmiconnector-iiop], |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
460 |
[enable the JMX RMIConnector iiop transport @<:@disabled@:>@])]) |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
461 |
if test "x$enable_rmiconnector_iiop" = "xyes"; then |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
462 |
RMICONNECTOR_IIOP=true |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
463 |
else |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
464 |
RMICONNECTOR_IIOP=false |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
465 |
fi |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
466 |
AC_SUBST(RMICONNECTOR_IIOP) |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
467 |
|
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
468 |
############################################################################### |
540ed4c23085
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22473
diff
changeset
|
469 |
# |
20363 | 470 |
# Compress jars |
471 |
# |
|
472 |
COMPRESS_JARS=false |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
473 |
|
20363 | 474 |
AC_SUBST(COMPRESS_JARS) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
475 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
476 |
|
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
477 |
############################################################################### |
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
478 |
# |
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
479 |
# Setup version numbers |
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
480 |
# |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
481 |
AC_DEFUN_ONCE([JDKOPT_SETUP_JDK_VERSION_NUMBERS], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
482 |
[ |
20363 | 483 |
# Source the version numbers |
484 |
. $AUTOCONF_DIR/version-numbers |
|
15055
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
15054
diff
changeset
|
485 |
|
20363 | 486 |
# Get the settings from parameters |
487 |
AC_ARG_WITH(milestone, [AS_HELP_STRING([--with-milestone], |
|
488 |
[Set milestone value for build @<:@internal@:>@])]) |
|
489 |
if test "x$with_milestone" = xyes; then |
|
490 |
AC_MSG_ERROR([Milestone must have a value]) |
|
491 |
elif test "x$with_milestone" != x; then |
|
15055
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
15054
diff
changeset
|
492 |
MILESTONE="$with_milestone" |
20363 | 493 |
fi |
494 |
if test "x$MILESTONE" = x; then |
|
495 |
MILESTONE=internal |
|
496 |
fi |
|
15055
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
15054
diff
changeset
|
497 |
|
20363 | 498 |
AC_ARG_WITH(update-version, [AS_HELP_STRING([--with-update-version], |
499 |
[Set update version value for build @<:@b00@:>@])]) |
|
500 |
if test "x$with_update_version" = xyes; then |
|
501 |
AC_MSG_ERROR([Update version must have a value]) |
|
502 |
elif test "x$with_update_version" != x; then |
|
503 |
JDK_UPDATE_VERSION="$with_update_version" |
|
22176
3dae78c445a6
8029908: jdk 8u5 mac build produces incorrect version string 1.8.0_5
erikj
parents:
21057
diff
changeset
|
504 |
# On macosx 10.7, it's not possible to set --with-update-version=0X due |
3dae78c445a6
8029908: jdk 8u5 mac build produces incorrect version string 1.8.0_5
erikj
parents:
21057
diff
changeset
|
505 |
# to a bug in expr (which reduces it to just X). To work around this, we |
3dae78c445a6
8029908: jdk 8u5 mac build produces incorrect version string 1.8.0_5
erikj
parents:
21057
diff
changeset
|
506 |
# always add a 0 to one digit update versions. |
3dae78c445a6
8029908: jdk 8u5 mac build produces incorrect version string 1.8.0_5
erikj
parents:
21057
diff
changeset
|
507 |
if test "${#JDK_UPDATE_VERSION}" = "1"; then |
3dae78c445a6
8029908: jdk 8u5 mac build produces incorrect version string 1.8.0_5
erikj
parents:
21057
diff
changeset
|
508 |
JDK_UPDATE_VERSION="0${JDK_UPDATE_VERSION}" |
3dae78c445a6
8029908: jdk 8u5 mac build produces incorrect version string 1.8.0_5
erikj
parents:
21057
diff
changeset
|
509 |
fi |
20363 | 510 |
fi |
17663
d2ae6f7a7e7b
8015784: Add configure parameter --with-update-version
erikj
parents:
16581
diff
changeset
|
511 |
|
20363 | 512 |
AC_ARG_WITH(user-release-suffix, [AS_HELP_STRING([--with-user-release-suffix], |
22714
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22709
diff
changeset
|
513 |
[Add a custom string to the version string if build number is not set.@<:@username_builddateb00@:>@])]) |
20363 | 514 |
if test "x$with_user_release_suffix" = xyes; then |
515 |
AC_MSG_ERROR([Release suffix must have a value]) |
|
516 |
elif test "x$with_user_release_suffix" != x; then |
|
517 |
USER_RELEASE_SUFFIX="$with_user_release_suffix" |
|
518 |
fi |
|
20275
bdf86ab49b78
8005924: Make it possible to set both --with-user-release-suffix and --with-build-number
erikj
parents:
20273
diff
changeset
|
519 |
|
20363 | 520 |
AC_ARG_WITH(build-number, [AS_HELP_STRING([--with-build-number], |
521 |
[Set build number value for build @<:@b00@:>@])]) |
|
522 |
if test "x$with_build_number" = xyes; then |
|
523 |
AC_MSG_ERROR([Build number must have a value]) |
|
524 |
elif test "x$with_build_number" != x; then |
|
525 |
JDK_BUILD_NUMBER="$with_build_number" |
|
20275
bdf86ab49b78
8005924: Make it possible to set both --with-user-release-suffix and --with-build-number
erikj
parents:
20273
diff
changeset
|
526 |
fi |
20363 | 527 |
# Define default USER_RELEASE_SUFFIX if BUILD_NUMBER and USER_RELEASE_SUFFIX are not set |
528 |
if test "x$JDK_BUILD_NUMBER" = x; then |
|
529 |
JDK_BUILD_NUMBER=b00 |
|
530 |
if test "x$USER_RELEASE_SUFFIX" = x; then |
|
531 |
BUILD_DATE=`date '+%Y_%m_%d_%H_%M'` |
|
532 |
# Avoid [:alnum:] since it depends on the locale. |
|
533 |
CLEAN_USERNAME=`echo "$USER" | $TR -d -c 'abcdefghijklmnopqrstuvqxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'` |
|
534 |
USER_RELEASE_SUFFIX=`echo "${CLEAN_USERNAME}_${BUILD_DATE}" | $TR 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` |
|
535 |
fi |
|
536 |
fi |
|
15055
25fc052ccadd
8001895: build-infra: Make JDK_BUILD_NUMBER and MILESTONE customizable
erikj
parents:
15054
diff
changeset
|
537 |
|
20363 | 538 |
# Now set the JDK version, milestone, build number etc. |
539 |
AC_SUBST(USER_RELEASE_SUFFIX) |
|
540 |
AC_SUBST(JDK_MAJOR_VERSION) |
|
541 |
AC_SUBST(JDK_MINOR_VERSION) |
|
542 |
AC_SUBST(JDK_MICRO_VERSION) |
|
543 |
AC_SUBST(JDK_UPDATE_VERSION) |
|
544 |
AC_SUBST(JDK_BUILD_NUMBER) |
|
545 |
AC_SUBST(MILESTONE) |
|
546 |
AC_SUBST(LAUNCHER_NAME) |
|
547 |
AC_SUBST(PRODUCT_NAME) |
|
548 |
AC_SUBST(PRODUCT_SUFFIX) |
|
549 |
AC_SUBST(JDK_RC_PLATFORM_NAME) |
|
550 |
AC_SUBST(COMPANY_NAME) |
|
551 |
AC_SUBST(MACOSX_BUNDLE_NAME_BASE) |
|
552 |
AC_SUBST(MACOSX_BUNDLE_ID_BASE) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
553 |
|
20363 | 554 |
COPYRIGHT_YEAR=`date +'%Y'` |
555 |
AC_SUBST(COPYRIGHT_YEAR) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
556 |
|
20363 | 557 |
if test "x$JDK_UPDATE_VERSION" != x; then |
558 |
JDK_VERSION="${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_MICRO_VERSION}_${JDK_UPDATE_VERSION}" |
|
559 |
else |
|
560 |
JDK_VERSION="${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_MICRO_VERSION}" |
|
561 |
fi |
|
562 |
AC_SUBST(JDK_VERSION) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
563 |
|
20363 | 564 |
COOKED_BUILD_NUMBER=`$ECHO $JDK_BUILD_NUMBER | $SED -e 's/^b//' -e 's/^0//'` |
565 |
AC_SUBST(COOKED_BUILD_NUMBER) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
566 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
567 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
568 |
AC_DEFUN_ONCE([JDKOPT_SETUP_BUILD_TWEAKS], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
569 |
[ |
20363 | 570 |
HOTSPOT_MAKE_ARGS="$HOTSPOT_TARGET" |
571 |
AC_SUBST(HOTSPOT_MAKE_ARGS) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
572 |
|
20363 | 573 |
# The name of the Service Agent jar. |
574 |
SALIB_NAME="${LIBRARY_PREFIX}saproc${SHARED_LIBRARY_SUFFIX}" |
|
575 |
if test "x$OPENJDK_TARGET_OS" = "xwindows"; then |
|
576 |
SALIB_NAME="${LIBRARY_PREFIX}sawindbg${SHARED_LIBRARY_SUFFIX}" |
|
577 |
fi |
|
578 |
AC_SUBST(SALIB_NAME) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
579 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
580 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
581 |
AC_DEFUN_ONCE([JDKOPT_SETUP_DEBUG_SYMBOLS], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
582 |
[ |
20363 | 583 |
# |
584 |
# ENABLE_DEBUG_SYMBOLS |
|
585 |
# This must be done after the toolchain is setup, since we're looking at objcopy. |
|
586 |
# |
|
587 |
AC_ARG_ENABLE([debug-symbols], |
|
588 |
[AS_HELP_STRING([--disable-debug-symbols],[disable generation of debug symbols @<:@enabled@:>@])]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
589 |
|
20363 | 590 |
AC_MSG_CHECKING([if we should generate debug symbols]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
591 |
|
20363 | 592 |
if test "x$enable_debug_symbols" = "xyes" && test "x$OBJCOPY" = x; then |
593 |
# explicit enabling of enable-debug-symbols and can't find objcopy |
|
594 |
# this is an error |
|
595 |
AC_MSG_ERROR([Unable to find objcopy, cannot enable debug-symbols]) |
|
596 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
597 |
|
20363 | 598 |
if test "x$enable_debug_symbols" = "xyes"; then |
14615
2616975e69d3
8001753: build-infra: mismatch with full debug symbol control for hotspot
erikj
parents:
14112
diff
changeset
|
599 |
ENABLE_DEBUG_SYMBOLS=true |
20363 | 600 |
elif test "x$enable_debug_symbols" = "xno"; then |
601 |
ENABLE_DEBUG_SYMBOLS=false |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
602 |
else |
21057
6cfd8ccbfbbc
8027117: adapt JDK-7165611 to new build-infra whitespace/indent policy
dcubed
parents:
20641
diff
changeset
|
603 |
# Default is on if objcopy is found |
6cfd8ccbfbbc
8027117: adapt JDK-7165611 to new build-infra whitespace/indent policy
dcubed
parents:
20641
diff
changeset
|
604 |
if test "x$OBJCOPY" != x; then |
6cfd8ccbfbbc
8027117: adapt JDK-7165611 to new build-infra whitespace/indent policy
dcubed
parents:
20641
diff
changeset
|
605 |
ENABLE_DEBUG_SYMBOLS=true |
6cfd8ccbfbbc
8027117: adapt JDK-7165611 to new build-infra whitespace/indent policy
dcubed
parents:
20641
diff
changeset
|
606 |
# MacOS X and Windows don't use objcopy but default is on for those OSes |
6cfd8ccbfbbc
8027117: adapt JDK-7165611 to new build-infra whitespace/indent policy
dcubed
parents:
20641
diff
changeset
|
607 |
elif test "x$OPENJDK_TARGET_OS" = xmacosx || test "x$OPENJDK_TARGET_OS" = xwindows; then |
20363 | 608 |
ENABLE_DEBUG_SYMBOLS=true |
609 |
else |
|
610 |
ENABLE_DEBUG_SYMBOLS=false |
|
611 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
612 |
fi |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
613 |
|
20363 | 614 |
AC_MSG_RESULT([$ENABLE_DEBUG_SYMBOLS]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
615 |
|
20363 | 616 |
# |
617 |
# ZIP_DEBUGINFO_FILES |
|
618 |
# |
|
619 |
AC_MSG_CHECKING([if we should zip debug-info files]) |
|
620 |
AC_ARG_ENABLE([zip-debug-info], |
|
621 |
[AS_HELP_STRING([--disable-zip-debug-info],[disable zipping of debug-info files @<:@enabled@:>@])], |
|
622 |
[enable_zip_debug_info="${enableval}"], [enable_zip_debug_info="yes"]) |
|
623 |
AC_MSG_RESULT([${enable_zip_debug_info}]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
624 |
|
20363 | 625 |
if test "x${enable_zip_debug_info}" = "xno"; then |
626 |
ZIP_DEBUGINFO_FILES=false |
|
627 |
else |
|
628 |
ZIP_DEBUGINFO_FILES=true |
|
629 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
630 |
|
20363 | 631 |
AC_SUBST(ENABLE_DEBUG_SYMBOLS) |
632 |
AC_SUBST(ZIP_DEBUGINFO_FILES) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
633 |
]) |