author | erikj |
Fri, 15 Jun 2018 09:53:28 -0700 | |
changeset 50590 | 5fa19bad622d |
parent 50511 | 075e9982b409 |
child 50593 | 2ced30c98a93 |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
48433 | 2 |
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
13697 | 26 |
# Configured @DATE_WHEN_CONFIGURED@ to build |
27 |
# for target system @OPENJDK_TARGET_OS@-@OPENJDK_TARGET_CPU@ |
|
28 |
# (called @OPENJDK_TARGET_AUTOCONF_NAME@ by autoconf) |
|
29 |
# on build system @OPENJDK_BUILD_OS@-@OPENJDK_BUILD_CPU@ |
|
30 |
# (called @OPENJDK_BUILD_AUTOCONF_NAME@ by autoconf) |
|
13132 | 31 |
# using 'configure @CONFIGURE_COMMAND_LINE@' |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
32 |
|
22716
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
33 |
# The command line given to configure. |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
34 |
CONFIGURE_COMMAND_LINE:=@CONFIGURE_COMMAND_LINE@ |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
35 |
|
13697 | 36 |
# A self-referential reference to this file. |
37 |
SPEC:=@SPEC@ |
|
38 |
||
35747 | 39 |
# SPACE and COMMA are defined in MakeBase.gmk, but they are also used in |
40 |
# some definitions here, and are needed if MakeBase.gmk is not included before |
|
41 |
# this file. |
|
32719
c41d1a7bffcf
8137013: ar (static linker) broken since JDK-8065912
ihse
parents:
32715
diff
changeset
|
42 |
X:= |
c41d1a7bffcf
8137013: ar (static linker) broken since JDK-8065912
ihse
parents:
32715
diff
changeset
|
43 |
SPACE:=$(X) $(X) |
35747 | 44 |
COMMA:=, |
32719
c41d1a7bffcf
8137013: ar (static linker) broken since JDK-8065912
ihse
parents:
32715
diff
changeset
|
45 |
|
29662 | 46 |
# What make to use for main processing, after bootstrapping top-level Makefile. |
47 |
MAKE := @MAKE@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
48 |
|
29662 | 49 |
# The default make arguments |
29788 | 50 |
MAKE_ARGS = $(MAKE_LOG_FLAGS) -r -R -I $(TOPDIR)/make/common SPEC=$(SPEC) \ |
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44078
diff
changeset
|
51 |
MAKE_LOG_FLAGS="$(MAKE_LOG_FLAGS)" $(MAKE_LOG_VARS) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
52 |
|
25854 | 53 |
OUTPUT_SYNC_SUPPORTED:=@OUTPUT_SYNC_SUPPORTED@ |
54 |
OUTPUT_SYNC:=@OUTPUT_SYNC@ |
|
55 |
||
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27602
diff
changeset
|
56 |
# Override the shell with bash |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27602
diff
changeset
|
57 |
BASH:=@BASH@ |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27602
diff
changeset
|
58 |
BASH_ARGS:=@BASH_ARGS@ |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27602
diff
changeset
|
59 |
SHELL:=$(BASH) $(BASH_ARGS) |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27602
diff
changeset
|
60 |
|
12801 | 61 |
# The "human readable" name of this configuration |
62 |
CONF_NAME:=@CONF_NAME@ |
|
63 |
||
13132 | 64 |
# The built jdk will run in this target system. |
65 |
OPENJDK_TARGET_OS:=@OPENJDK_TARGET_OS@ |
|
27586
e7cfdc266a70
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
26907
diff
changeset
|
66 |
OPENJDK_TARGET_OS_TYPE:=@OPENJDK_TARGET_OS_TYPE@ |
14111 | 67 |
OPENJDK_TARGET_OS_ENV:=@OPENJDK_TARGET_OS_ENV@ |
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49412
diff
changeset
|
68 |
OPENJDK_TARGET_OS_UPPERCASE:=@OPENJDK_TARGET_OS_UPPERCASE@ |
13132 | 69 |
|
70 |
OPENJDK_TARGET_CPU:=@OPENJDK_TARGET_CPU@ |
|
71 |
OPENJDK_TARGET_CPU_ARCH:=@OPENJDK_TARGET_CPU_ARCH@ |
|
72 |
OPENJDK_TARGET_CPU_BITS:=@OPENJDK_TARGET_CPU_BITS@ |
|
73 |
OPENJDK_TARGET_CPU_ENDIAN:=@OPENJDK_TARGET_CPU_ENDIAN@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
74 |
|
13697 | 75 |
COMPILE_TYPE:=@COMPILE_TYPE@ |
76 |
||
77 |
# Legacy support |
|
78 |
OPENJDK_TARGET_CPU_ISADIR:=@OPENJDK_TARGET_CPU_ISADIR@ |
|
79 |
OPENJDK_TARGET_CPU_LEGACY:=@OPENJDK_TARGET_CPU_LEGACY@ |
|
80 |
OPENJDK_TARGET_CPU_LEGACY_LIB:=@OPENJDK_TARGET_CPU_LEGACY_LIB@ |
|
81 |
OPENJDK_TARGET_CPU_OSARCH:=@OPENJDK_TARGET_CPU_OSARCH@ |
|
48355 | 82 |
OPENJDK_TARGET_OS_INCLUDE_SUBIDR:=@OPENJDK_TARGET_OS_INCLUDE_SUBDIR@ |
13697 | 83 |
|
37402 | 84 |
HOTSPOT_TARGET_OS := @HOTSPOT_TARGET_OS@ |
85 |
HOTSPOT_TARGET_OS_TYPE := @HOTSPOT_TARGET_OS_TYPE@ |
|
86 |
||
87 |
HOTSPOT_TARGET_CPU := @HOTSPOT_TARGET_CPU@ |
|
88 |
HOTSPOT_TARGET_CPU_ARCH := @HOTSPOT_TARGET_CPU_ARCH@ |
|
89 |
HOTSPOT_TARGET_CPU_DEFINE := @HOTSPOT_TARGET_CPU_DEFINE@ |
|
90 |
||
37972 | 91 |
OPENJDK_TARGET_BUNDLE_PLATFORM:=@OPENJDK_TARGET_BUNDLE_PLATFORM@ |
43383 | 92 |
JDK_ARCH_ABI_PROP_NAME := @JDK_ARCH_ABI_PROP_NAME@ |
37972 | 93 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
94 |
# We are building on this build system. |
13132 | 95 |
# When not cross-compiling, it is the same as the target. |
96 |
OPENJDK_BUILD_OS:=@OPENJDK_BUILD_OS@ |
|
27586
e7cfdc266a70
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
26907
diff
changeset
|
97 |
OPENJDK_BUILD_OS_TYPE:=@OPENJDK_BUILD_OS_TYPE@ |
25882 | 98 |
OPENJDK_BUILD_OS_ENV:=@OPENJDK_BUILD_OS_ENV@ |
13132 | 99 |
|
100 |
OPENJDK_BUILD_CPU:=@OPENJDK_BUILD_CPU@ |
|
101 |
OPENJDK_BUILD_CPU_ARCH:=@OPENJDK_BUILD_CPU_ARCH@ |
|
102 |
OPENJDK_BUILD_CPU_BITS:=@OPENJDK_BUILD_CPU_BITS@ |
|
103 |
OPENJDK_BUILD_CPU_ENDIAN:=@OPENJDK_BUILD_CPU_ENDIAN@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
104 |
|
48355 | 105 |
OPENJDK_BUILD_OS_INCLUDE_SUBIDR:=@OPENJDK_TARGET_OS_INCLUDE_SUBDIR@ |
106 |
||
44985
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
107 |
# Target platform value in ModuleTarget class file attribute. |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
108 |
OPENJDK_MODULE_TARGET_PLATFORM:=@OPENJDK_MODULE_TARGET_PLATFORM@ |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
109 |
|
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
110 |
# OS_* properties in release file |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
111 |
RELEASE_FILE_OS_NAME:=@RELEASE_FILE_OS_NAME@ |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
112 |
RELEASE_FILE_OS_ARCH:=@RELEASE_FILE_OS_ARCH@ |
12801 | 113 |
|
32921
8e0250dfa145
8138761: Improved handling of libffi, and cleanup of libraries.m4
ihse
parents:
32920
diff
changeset
|
114 |
LIBM:=@LIBM@ |
12801 | 115 |
LIBDL:=@LIBDL@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
116 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
117 |
# colon or semicolon |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
118 |
PATH_SEP:=@PATH_SEP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
119 |
|
28809
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28606
diff
changeset
|
120 |
# Save the original path before replacing it with the Visual Studio tools |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28606
diff
changeset
|
121 |
ORIGINAL_PATH:=@ORIGINAL_PATH@ |
14111 | 122 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
28809
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28606
diff
changeset
|
123 |
# On Windows, the Visual Studio toolchain needs the PATH to be adjusted |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28606
diff
changeset
|
124 |
# to include Visual Studio tools (this needs to be in cygwin/msys style). |
14111 | 125 |
export PATH:=@VS_PATH@ |
126 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
127 |
|
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
23423
diff
changeset
|
128 |
SYSROOT_CFLAGS := @SYSROOT_CFLAGS@ |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
23423
diff
changeset
|
129 |
SYSROOT_LDFLAGS := @SYSROOT_LDFLAGS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
130 |
|
47252 | 131 |
# The top-level directory of the source repository |
22722 | 132 |
TOPDIR:=@TOPDIR@ |
133 |
||
36506 | 134 |
|
135 |
IMPORT_MODULES_CLASSES:=@IMPORT_MODULES_CLASSES@ |
|
136 |
IMPORT_MODULES_CMDS:=@IMPORT_MODULES_CMDS@ |
|
137 |
IMPORT_MODULES_LIBS:=@IMPORT_MODULES_LIBS@ |
|
138 |
IMPORT_MODULES_CONF:=@IMPORT_MODULES_CONF@ |
|
42505
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42425
diff
changeset
|
139 |
IMPORT_MODULES_LEGAL:=@IMPORT_MODULES_LEGAL@ |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42425
diff
changeset
|
140 |
IMPORT_MODULES_MAN:=@IMPORT_MODULES_MAN@ |
36506 | 141 |
IMPORT_MODULES_SRC:=@IMPORT_MODULES_SRC@ |
142 |
IMPORT_MODULES_MAKE:=@IMPORT_MODULES_MAKE@ |
|
143 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
144 |
COPYRIGHT_YEAR:=@COPYRIGHT_YEAR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
145 |
|
48598
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
146 |
# Platform naming variables |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
147 |
LAUNCHER_NAME:=@LAUNCHER_NAME@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
148 |
PRODUCT_NAME:=@PRODUCT_NAME@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
149 |
PRODUCT_SUFFIX:=@PRODUCT_SUFFIX@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
150 |
JDK_RC_PLATFORM_NAME:=@JDK_RC_PLATFORM_NAME@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
151 |
COMPANY_NAME:=@COMPANY_NAME@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
152 |
HOTSPOT_VM_DISTRO:=@HOTSPOT_VM_DISTRO@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
153 |
MACOSX_BUNDLE_NAME_BASE=@MACOSX_BUNDLE_NAME_BASE@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
154 |
MACOSX_BUNDLE_ID_BASE=@MACOSX_BUNDLE_ID_BASE@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
155 |
USERNAME:=@USERNAME@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
156 |
VENDOR_URL:=@VENDOR_URL@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
157 |
VENDOR_URL_BUG:=@VENDOR_URL_BUG@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
158 |
VENDOR_URL_VM_BUG:=@VENDOR_URL_VM_BUG@ |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
159 |
|
33926
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
160 |
# New (JEP-223) version information |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
161 |
|
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
162 |
## Building blocks of the version string |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
163 |
# First three version numbers, with well-specified meanings (numerical) |
48327 | 164 |
VERSION_FEATURE := @VERSION_FEATURE@ |
165 |
VERSION_INTERIM := @VERSION_INTERIM@ |
|
166 |
VERSION_UPDATE := @VERSION_UPDATE@ |
|
33926
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
167 |
VERSION_PATCH := @VERSION_PATCH@ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
168 |
# The pre-release identifier (string) |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
169 |
VERSION_PRE := @VERSION_PRE@ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
170 |
# The build number (numerical) |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
171 |
VERSION_BUILD := @VERSION_BUILD@ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
172 |
# Optional build information (string) |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
173 |
VERSION_OPT := @VERSION_OPT@ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
174 |
|
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
175 |
## Composite variables |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
176 |
# The version number as a dot separated sequence of numbers, e.g. 9.0.1 |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
177 |
VERSION_NUMBER := @VERSION_NUMBER@ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
178 |
# VERSION_NUMBER but always with exactly 4 positions, with 0 for empty positions. |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
179 |
VERSION_NUMBER_FOUR_POSITIONS := @VERSION_NUMBER_FOUR_POSITIONS@ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
180 |
# The complete version string, with additional build information |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
181 |
VERSION_STRING := @VERSION_STRING@ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
182 |
# The short version string, without trailing zeroes and just PRE, if present. |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
183 |
VERSION_SHORT := @VERSION_SHORT@ |
48327 | 184 |
# The Java specification version. It usually equals the feature version number. |
185 |
VERSION_SPECIFICATION := @VERSION_FEATURE@ |
|
33929 | 186 |
# A GA version is defined by the PRE string being empty. Rather than testing for |
187 |
# that, this variable defines it with true/false. |
|
188 |
VERSION_IS_GA := @VERSION_IS_GA@ |
|
33926
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
189 |
|
48327 | 190 |
# Version date |
191 |
VERSION_DATE := @VERSION_DATE@ |
|
192 |
||
193 |
# Vendor version string |
|
194 |
VENDOR_VERSION_STRING := @VENDOR_VERSION_STRING@ |
|
195 |
||
48355 | 196 |
# Class-file version |
197 |
VERSION_CLASSFILE_MAJOR := @VERSION_CLASSFILE_MAJOR@ |
|
198 |
VERSION_CLASSFILE_MINOR := @VERSION_CLASSFILE_MINOR@ |
|
199 |
||
33926
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
200 |
# Convenience CFLAGS settings for passing version information into native programs. |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
201 |
VERSION_CFLAGS := \ |
48327 | 202 |
-DVERSION_FEATURE=$(VERSION_FEATURE) \ |
203 |
-DVERSION_INTERIM=$(VERSION_INTERIM) \ |
|
204 |
-DVERSION_UPDATE=$(VERSION_UPDATE) \ |
|
33926
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
205 |
-DVERSION_PATCH=$(VERSION_PATCH) \ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
206 |
-DVERSION_PRE='"$(VERSION_PRE)"' \ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
207 |
-DVERSION_BUILD=$(VERSION_BUILD) \ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
208 |
-DVERSION_OPT='"$(VERSION_OPT)"' \ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
209 |
-DVERSION_NUMBER='"$(VERSION_NUMBER)"' \ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
210 |
-DVERSION_STRING='"$(VERSION_STRING)"' \ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
211 |
-DVERSION_SHORT='"$(VERSION_SHORT)"' \ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
212 |
-DVERSION_SPECIFICATION='"$(VERSION_SPECIFICATION)"' \ |
48327 | 213 |
-DVERSION_DATE='"$(VERSION_DATE)"' \ |
214 |
-DVENDOR_VERSION_STRING='"$(VENDOR_VERSION_STRING)"' \ |
|
48355 | 215 |
-DVERSION_CLASSFILE_MAJOR=$(VERSION_CLASSFILE_MAJOR) \ |
216 |
-DVERSION_CLASSFILE_MINOR=$(VERSION_CLASSFILE_MINOR) \ |
|
33926
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
217 |
# |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
218 |
|
48598
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
219 |
ifneq ($(COMPANY_NAME),) |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
220 |
# COMPANY_NAME is set to "N/A" in $AUTOCONF_DIR/version-numbers by default, |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
221 |
# but can be customized with the '--with-vendor-name' configure option. |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
222 |
# Only export "VENDOR" to the build if COMPANY_NAME contains a real value. |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
223 |
# Otherwise the default value for VENDOR, which is used to set the "java.vendor" |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
224 |
# and "java.vm.vendor" properties is hard-coded into the source code (i.e. in |
48841 | 225 |
# System.c in the jdk for "vm.vendor" and vm_version.cpp in the VM for "java.vm.vendor") |
48598
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
226 |
ifneq ($(COMPANY_NAME), N/A) |
48841 | 227 |
VERSION_CFLAGS += -DVENDOR='"$(COMPANY_NAME)"' |
48598
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
228 |
endif |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
229 |
endif |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
230 |
|
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
231 |
# Only export VENDOR_URL, VENDOR_URL_BUG and VENDOR_VM_URL_BUG to the build if |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
232 |
# they are not empty. Otherwise, default values which are defined in the sources |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
233 |
# will be used. |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
234 |
ifneq ($(VENDOR_URL),) |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
235 |
VERSION_CFLAGS += -DVENDOR_URL='"$(VENDOR_URL)"' |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
236 |
endif |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
237 |
ifneq ($(VENDOR_URL_BUG),) |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
238 |
VERSION_CFLAGS += -DVENDOR_URL_BUG='"$(VENDOR_URL_BUG)"' |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
239 |
endif |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
240 |
ifneq ($(VENDOR_URL_VM_BUG),) |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
241 |
VERSION_CFLAGS += -DVENDOR_URL_VM_BUG='"$(VENDOR_URL_VM_BUG)"' |
c7eea4b541d1
8189761: COMPANY_NAME, IMPLEMENTOR, BUNDLE_VENDOR, VENDOR, but no configure flag
simonis
parents:
48406
diff
changeset
|
242 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
243 |
|
33926
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30415
diff
changeset
|
244 |
# Different naming strings generated from the above information. |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
245 |
RUNTIME_NAME=$(PRODUCT_NAME) $(PRODUCT_SUFFIX) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
246 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
247 |
# How to compile the code: release, fastdebug or slowdebug |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
248 |
DEBUG_LEVEL:=@DEBUG_LEVEL@ |
37402 | 249 |
HOTSPOT_DEBUG_LEVEL:=@HOTSPOT_DEBUG_LEVEL@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
250 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
251 |
# This is the JDK variant to build. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
252 |
# The JDK variant is a name for a specific set of modules to be compiled for the JDK. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
253 |
JDK_VARIANT:=@JDK_VARIANT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
254 |
|
37402 | 255 |
# Which JVM variants to build (space-separated list) |
256 |
JVM_VARIANTS := @JVM_VARIANTS@ |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
257 |
JVM_VARIANT_MAIN := @JVM_VARIANT_MAIN@ |
37402 | 258 |
|
259 |
# Lists of features per variant. Only relevant for the variants listed in |
|
260 |
# JVM_VARIANTS. |
|
261 |
JVM_FEATURES_server := @JVM_FEATURES_server@ |
|
262 |
JVM_FEATURES_client := @JVM_FEATURES_client@ |
|
263 |
JVM_FEATURES_core := @JVM_FEATURES_core@ |
|
264 |
JVM_FEATURES_minimal := @JVM_FEATURES_minimal@ |
|
265 |
JVM_FEATURES_zero := @JVM_FEATURES_zero@ |
|
266 |
JVM_FEATURES_custom := @JVM_FEATURES_custom@ |
|
267 |
||
268 |
# Used for make-time verifications |
|
269 |
VALID_JVM_FEATURES := @VALID_JVM_FEATURES@ |
|
270 |
VALID_JVM_VARIANTS := @VALID_JVM_VARIANTS@ |
|
271 |
||
37967
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37764
diff
changeset
|
272 |
# Control wether Hotspot builds gtest tests |
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37972
diff
changeset
|
273 |
BUILD_GTEST := @BUILD_GTEST@ |
37967
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37764
diff
changeset
|
274 |
|
37402 | 275 |
# Control use of precompiled header in hotspot libjvm build |
276 |
USE_PRECOMPILED_HEADER := @USE_PRECOMPILED_HEADER@ |
|
277 |
||
41046 | 278 |
# Only build headless support or not |
279 |
ENABLE_HEADLESS_ONLY := @ENABLE_HEADLESS_ONLY@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
280 |
|
44727 | 281 |
ENABLE_FULL_DOCS := @ENABLE_FULL_DOCS@ |
282 |
||
13697 | 283 |
# JDK_OUTPUTDIR specifies where a working jvm is built. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
284 |
# You can run $(JDK_OUTPUTDIR)/bin/java |
13132 | 285 |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
286 |
OUTPUTDIR := @OUTPUTDIR@ |
16578
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
287 |
# Colon left out to be able to override IMAGES_OUTPUTDIR for bootcycle-images |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
288 |
SUPPORT_OUTPUTDIR=$(OUTPUTDIR)/support |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
289 |
BUILDTOOLS_OUTPUTDIR=$(OUTPUTDIR)/buildtools |
27560 | 290 |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
291 |
HOTSPOT_OUTPUTDIR=$(OUTPUTDIR)/hotspot |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
292 |
JDK_OUTPUTDIR=$(OUTPUTDIR)/jdk |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
293 |
IMAGES_OUTPUTDIR=$(OUTPUTDIR)/images |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
294 |
BUNDLES_OUTPUTDIR=$(OUTPUTDIR)/bundles |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
295 |
TESTMAKE_OUTPUTDIR=$(OUTPUTDIR)/test-make |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
296 |
MAKESUPPORT_OUTPUTDIR=$(OUTPUTDIR)/make-support |
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41458
diff
changeset
|
297 |
|
29790 | 298 |
# This does not get overridden in a bootcycle build |
299 |
CONFIGURESUPPORT_OUTPUTDIR:=@CONFIGURESUPPORT_OUTPUTDIR@ |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
300 |
BUILDJDK_OUTPUTDIR=$(OUTPUTDIR)/buildjdk |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
301 |
|
37035
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
36541
diff
changeset
|
302 |
BUILD_FAILURE_HANDLER := @BUILD_FAILURE_HANDLER@ |
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
36541
diff
changeset
|
303 |
|
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
304 |
ENABLE_GENERATE_CLASSLIST := @ENABLE_GENERATE_CLASSLIST@ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
305 |
|
50590
5fa19bad622d
8204973: Add build support for filtering translations
erikj
parents:
50511
diff
changeset
|
306 |
EXCLUDE_TRANSLATIONS := @EXCLUDE_TRANSLATIONS@ |
5fa19bad622d
8204973: Add build support for filtering translations
erikj
parents:
50511
diff
changeset
|
307 |
|
27560 | 308 |
# The boot jdk to use. This is overridden in bootcycle-spec.gmk. Make sure to keep |
309 |
# it in sync. |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
310 |
BOOT_JDK:=@BOOT_JDK@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
311 |
|
36506 | 312 |
BUILD_JDK:=@BUILD_JDK@ |
313 |
CREATE_BUILDJDK:=@CREATE_BUILDJDK@ |
|
37770 | 314 |
EXTERNAL_BUILDJDK:=@EXTERNAL_BUILDJDK@ |
36506 | 315 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
316 |
# When compiling Java source to be run by the boot jdk |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
317 |
# use these extra flags, eg -source 6 -target 6 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
318 |
BOOT_JDK_SOURCETARGET:=@BOOT_JDK_SOURCETARGET@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
319 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
320 |
# Information about the build system |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
321 |
NUM_CORES:=@NUM_CORES@ |
23985 | 322 |
MEMORY_SIZE:=@MEMORY_SIZE@ |
13697 | 323 |
# Enable sjavac support = use a javac server, |
324 |
# multi core javac compilation and dependency tracking. |
|
325 |
ENABLE_SJAVAC:=@ENABLE_SJAVAC@ |
|
33055
3676b99f33cf
8140312: Enable new sjavac server only mode in jdk build
erikj
parents:
33052
diff
changeset
|
326 |
ENABLE_JAVAC_SERVER:=@ENABLE_JAVAC_SERVER@ |
13697 | 327 |
# Store sjavac server synchronization files here, and |
328 |
# the sjavac server log files. |
|
29790 | 329 |
SJAVAC_SERVER_DIR=$(MAKESUPPORT_OUTPUTDIR)/javacservers |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
330 |
|
15790 | 331 |
# Number of parallel jobs to use for compilation |
332 |
JOBS?=@JOBS@ |
|
34594
7e0595aab028
8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents:
34493
diff
changeset
|
333 |
TEST_JOBS?=@TEST_JOBS@ |
15790 | 334 |
|
34491 | 335 |
# Default make target |
336 |
DEFAULT_MAKE_TARGET:=@DEFAULT_MAKE_TARGET@ |
|
49568 | 337 |
DEFAULT_LOG:=@DEFAULT_LOG@ |
34491 | 338 |
|
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49160
diff
changeset
|
339 |
FREETYPE_TO_USE:=@FREETYPE_TO_USE@ |
20654 | 340 |
FREETYPE_LIBS:=@FREETYPE_LIBS@ |
341 |
FREETYPE_CFLAGS:=@FREETYPE_CFLAGS@ |
|
48055 | 342 |
FONTCONFIG_CFLAGS:=@FONTCONFIG_CFLAGS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
343 |
CUPS_CFLAGS:=@CUPS_CFLAGS@ |
18018
d9d70190de37
8014231: --with-alsa configuration options don't add include or lib directories to proper flags
erikj
parents:
17661
diff
changeset
|
344 |
ALSA_LIBS:=@ALSA_LIBS@ |
d9d70190de37
8014231: --with-alsa configuration options don't add include or lib directories to proper flags
erikj
parents:
17661
diff
changeset
|
345 |
ALSA_CFLAGS:=@ALSA_CFLAGS@ |
34596
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34594
diff
changeset
|
346 |
LIBFFI_LIBS:=@LIBFFI_LIBS@ |
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34594
diff
changeset
|
347 |
LIBFFI_CFLAGS:=@LIBFFI_CFLAGS@ |
42425 | 348 |
ENABLE_LIBFFI_BUNDLING:=@ENABLE_LIBFFI_BUNDLING@ |
349 |
LIBFFI_LIB_FILE:=@LIBFFI_LIB_FILE@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
350 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
351 |
PACKAGE_PATH=@PACKAGE_PATH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
352 |
|
12801 | 353 |
# Source file for cacerts |
354 |
CACERTS_FILE=@CACERTS_FILE@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
355 |
|
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
356 |
# Enable unlimited crypto policy |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
357 |
UNLIMITED_CRYPTO=@UNLIMITED_CRYPTO@ |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
358 |
|
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
359 |
GCOV_ENABLED=@GCOV_ENABLED@ |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
360 |
|
47479 | 361 |
# AddressSanitizer |
362 |
export ASAN_ENABLED:=@ASAN_ENABLED@ |
|
363 |
export DEVKIT_LIB_DIR:=@DEVKIT_LIB_DIR@ |
|
364 |
ifeq ($(ASAN_ENABLED), yes) |
|
365 |
export ASAN_OPTIONS="handle_segv=0 detect_leaks=0" |
|
366 |
ifneq ($(DEVKIT_LIB_DIR),) |
|
367 |
export LD_LIBRARY_PATH:=$(LD_LIBRARY_PATH):$(DEVKIT_LIB_DIR) |
|
368 |
endif |
|
369 |
endif |
|
370 |
||
20363 | 371 |
# Necessary additional compiler flags to compile X11 |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
372 |
X_CFLAGS:=@X_CFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
373 |
X_LIBS:=@X_LIBS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
374 |
|
45875 | 375 |
# The lowest required version of macosx |
15786 | 376 |
MACOSX_VERSION_MIN=@MACOSX_VERSION_MIN@ |
45875 | 377 |
# The highest allowed version of macosx |
378 |
MACOSX_VERSION_MAX=@MACOSX_VERSION_MAX@ |
|
15581
1dd771c6a1ee
8005879: Add -DMAC_OS_X_VERSION_MAX_ALLOWED=1070 to builds on Mac
erikj
parents:
15393
diff
changeset
|
379 |
|
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22716
diff
changeset
|
380 |
# Toolchain type: gcc, clang, solstudio, lxc, microsoft... |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22716
diff
changeset
|
381 |
TOOLCHAIN_TYPE:=@TOOLCHAIN_TYPE@ |
34596
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34594
diff
changeset
|
382 |
TOOLCHAIN_VERSION := @TOOLCHAIN_VERSION@ |
37402 | 383 |
CC_VERSION_NUMBER := @CC_VERSION_NUMBER@ |
384 |
CXX_VERSION_NUMBER := @CXX_VERSION_NUMBER@ |
|
385 |
||
386 |
# Legacy support |
|
387 |
HOTSPOT_TOOLCHAIN_TYPE := @HOTSPOT_TOOLCHAIN_TYPE@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
388 |
|
22466 | 389 |
# Option used to tell the compiler whether to create 32- or 64-bit executables |
390 |
COMPILER_TARGET_BITS_FLAG:=@COMPILER_TARGET_BITS_FLAG@ |
|
16984 | 391 |
COMPILER_SUPPORTS_TARGET_BITS_FLAG=@COMPILER_SUPPORTS_TARGET_BITS_FLAG@ |
392 |
||
34596
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34594
diff
changeset
|
393 |
# Option used to pass a command file to the compiler |
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34594
diff
changeset
|
394 |
COMPILER_COMMAND_FILE_FLAG:=@COMPILER_COMMAND_FILE_FLAG@ |
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34594
diff
changeset
|
395 |
|
36051 | 396 |
# Option for specifying a file which saves the binder commands |
397 |
# produced by the link step (for debugging, currently AIX only) |
|
398 |
COMPILER_BINDCMD_FILE_FLAG:=@COMPILER_BINDCMD_FILE_FLAG@ |
|
399 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
400 |
CC_OUT_OPTION:=@CC_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
401 |
LD_OUT_OPTION:=@LD_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
402 |
AR_OUT_OPTION:=@AR_OUT_OPTION@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
403 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
404 |
# Flags used for overriding the default opt setting for a C/C++ source file. |
37402 | 405 |
C_O_FLAG_HIGHEST_JVM:=@C_O_FLAG_HIGHEST_JVM@ |
12801 | 406 |
C_O_FLAG_HIGHEST:=@C_O_FLAG_HIGHEST@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
407 |
C_O_FLAG_HI:=@C_O_FLAG_HI@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
408 |
C_O_FLAG_NORM:=@C_O_FLAG_NORM@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
409 |
C_O_FLAG_NONE:=@C_O_FLAG_NONE@ |
37402 | 410 |
C_O_FLAG_SIZE:=@C_O_FLAG_SIZE@ |
411 |
CXX_O_FLAG_HIGHEST_JVM:=@CXX_O_FLAG_HIGHEST_JVM@ |
|
12801 | 412 |
CXX_O_FLAG_HIGHEST:=@CXX_O_FLAG_HIGHEST@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
413 |
CXX_O_FLAG_HI:=@CXX_O_FLAG_HI@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
414 |
CXX_O_FLAG_NORM:=@CXX_O_FLAG_NORM@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
415 |
CXX_O_FLAG_NONE:=@CXX_O_FLAG_NONE@ |
37402 | 416 |
CXX_O_FLAG_SIZE:=@CXX_O_FLAG_SIZE@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
417 |
|
12801 | 418 |
C_FLAG_DEPS:=@C_FLAG_DEPS@ |
419 |
CXX_FLAG_DEPS:=@CXX_FLAG_DEPS@ |
|
420 |
||
29304
81a723f8d33c
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29173
diff
changeset
|
421 |
DISABLE_WARNING_PREFIX := @DISABLE_WARNING_PREFIX@ |
23423
153d4b6b1124
8037825: Fix warnings and enable "warnings as errors" in serviceability native libraries
sla
parents:
23171
diff
changeset
|
422 |
CFLAGS_WARNINGS_ARE_ERRORS:=@CFLAGS_WARNINGS_ARE_ERRORS@ |
153d4b6b1124
8037825: Fix warnings and enable "warnings as errors" in serviceability native libraries
sla
parents:
23171
diff
changeset
|
423 |
|
30415 | 424 |
# A global flag (true or false) determining if native warnings are considered errors. |
425 |
WARNINGS_AS_ERRORS := @WARNINGS_AS_ERRORS@ |
|
426 |
||
28812
6c36bc1ccc0e
8062223: Upgrading to ccache 1.3.10 disables the use of ccache
erikj
parents:
28809
diff
changeset
|
427 |
CFLAGS_CCACHE:=@CFLAGS_CCACHE@ |
49120 | 428 |
ADLC_CXXFLAG=@ADLC_CXXFLAG@ |
28812
6c36bc1ccc0e
8062223: Upgrading to ccache 1.3.10 disables the use of ccache
erikj
parents:
28809
diff
changeset
|
429 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
430 |
# Tools that potentially need to be cross compilation aware. |
34103 | 431 |
CC:=@FIXPATH@ @CCACHE@ @ICECC@ @CC@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
432 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
433 |
# CFLAGS used to compile the jdk native libraries (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
434 |
CFLAGS_JDKLIB:=@CFLAGS_JDKLIB@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
435 |
CXXFLAGS_JDKLIB:=@CXXFLAGS_JDKLIB@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
436 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
437 |
# CFLAGS used to compile the jdk native launchers (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
438 |
CFLAGS_JDKEXE:=@CFLAGS_JDKEXE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
439 |
CXXFLAGS_JDKEXE:=@CXXFLAGS_JDKEXE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
440 |
|
49120 | 441 |
LIBJSIG_HASHSTYLE_LDFLAGS := @LIBJSIG_HASHSTYLE_LDFLAGS@ |
442 |
LIBJSIG_NOEXECSTACK_LDFLAGS := @LIBJSIG_NOEXECSTACK_LDFLAGS@ |
|
36050
f6590b6e5e97
8150203: Incremental update from build-infra project
ihse
parents:
35747
diff
changeset
|
443 |
|
37402 | 444 |
JVM_CFLAGS := @JVM_CFLAGS@ |
445 |
JVM_LDFLAGS := @JVM_LDFLAGS@ |
|
446 |
JVM_ASFLAGS := @JVM_ASFLAGS@ |
|
447 |
JVM_LIBS := @JVM_LIBS@ |
|
448 |
JVM_RCFLAGS := @JVM_RCFLAGS@ |
|
449 |
||
450 |
# These flags might contain variables set by a custom extension that is included later. |
|
451 |
EXTRA_CFLAGS = @EXTRA_CFLAGS@ |
|
452 |
EXTRA_CXXFLAGS = @EXTRA_CXXFLAGS@ |
|
453 |
EXTRA_LDFLAGS = @EXTRA_LDFLAGS@ |
|
454 |
||
34103 | 455 |
CXX:=@FIXPATH@ @CCACHE@ @ICECC@ @CXX@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
456 |
|
14111 | 457 |
CPP:=@FIXPATH@ @CPP@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
458 |
|
27586
e7cfdc266a70
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
26907
diff
changeset
|
459 |
# The linker can be gcc or ld on unix systems, or link.exe on windows systems. |
14111 | 460 |
LD:=@FIXPATH@ @LD@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
461 |
|
25034
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
24414
diff
changeset
|
462 |
# Xcode SDK path |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
24414
diff
changeset
|
463 |
SDKROOT:=@SDKROOT@ |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
24414
diff
changeset
|
464 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
465 |
# LDFLAGS used to link the jdk native libraries (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
466 |
LDFLAGS_JDKLIB:=@LDFLAGS_JDKLIB@ |
33394 | 467 |
JDKLIB_LIBS:=@JDKLIB_LIBS@ |
49241 | 468 |
GLOBAL_LIBS:=@GLOBAL_LIBS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
469 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
470 |
# LDFLAGS used to link the jdk native launchers (C-code) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
471 |
LDFLAGS_JDKEXE:=@LDFLAGS_JDKEXE@ |
33394 | 472 |
JDKEXE_LIBS:=@JDKEXE_LIBS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
473 |
|
13697 | 474 |
# LDFLAGS specific to C++ linking. |
475 |
LDFLAGS_CXX_JDK:=@LDFLAGS_CXX_JDK@ |
|
476 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
477 |
# Sometimes a different linker is needed for c++ libs |
14111 | 478 |
LDCXX:=@FIXPATH@ @LDCXX@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
479 |
# The flags for linking libstdc++ linker. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
480 |
LIBCXX:=@LIBCXX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
481 |
|
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
482 |
# Compiler and linker flags used when building native tests |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
483 |
CFLAGS_TESTLIB:=@CFLAGS_TESTLIB@ |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
484 |
CXXFLAGS_TESTLIB:=@CXXFLAGS_TESTLIB@ |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
485 |
CFLAGS_TESTEXE:=@CFLAGS_TESTEXE@ |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
486 |
CXXFLAGS_TESTEXE:=@CXXFLAGS_TESTEXE@ |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
487 |
LDFLAGS_TESTLIB:=@LDFLAGS_TESTLIB@ |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
488 |
LDFLAGS_TESTEXE:=@LDFLAGS_TESTEXE@ |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
489 |
|
13697 | 490 |
# BUILD_CC/BUILD_LD is a compiler/linker that generates code that is runnable on the |
491 |
# build platform. |
|
34103 | 492 |
BUILD_CC:=@FIXPATH@ @BUILD_ICECC@ @BUILD_CC@ |
493 |
BUILD_CXX:=@FIXPATH@ @BUILD_ICECC@ @BUILD_CXX@ |
|
14111 | 494 |
BUILD_LD:=@FIXPATH@ @BUILD_LD@ |
34596
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34594
diff
changeset
|
495 |
BUILD_LDCXX:=@FIXPATH@ @BUILD_LDCXX@ |
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34101
diff
changeset
|
496 |
BUILD_AS:=@FIXPATH@ @BUILD_AS@ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34101
diff
changeset
|
497 |
BUILD_AR:=@FIXPATH@ @BUILD_AR@ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
34101
diff
changeset
|
498 |
BUILD_NM:=@FIXPATH@ @BUILD_NM@ |
36506 | 499 |
BUILD_OBJCOPY:=@BUILD_OBJCOPY@ |
500 |
BUILD_STRIP:=@BUILD_STRIP@ |
|
32810
8203e52cd373
8138694: Devkit build on Macosx still requires Xcode to be installed
erikj
parents:
32806
diff
changeset
|
501 |
BUILD_SYSROOT_CFLAGS:=@BUILD_SYSROOT_CFLAGS@ |
8203e52cd373
8138694: Devkit build on Macosx still requires Xcode to be installed
erikj
parents:
32806
diff
changeset
|
502 |
BUILD_SYSROOT_LDFLAGS:=@BUILD_SYSROOT_LDFLAGS@ |
13132 | 503 |
|
14111 | 504 |
AS:=@FIXPATH@ @AS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
505 |
|
27586
e7cfdc266a70
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
26907
diff
changeset
|
506 |
# AR is used to create a static library (is ar in unix, lib.exe in windows) |
14111 | 507 |
AR:=@FIXPATH@ @AR@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
508 |
ARFLAGS:=@ARFLAGS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
509 |
|
13697 | 510 |
NM:=@NM@ |
16582
61f0b8f48036
8006288: build-infra: Use solaris nm and not gnm on solaris
erikj
parents:
16581
diff
changeset
|
511 |
GNM:=@GNM@ |
13697 | 512 |
STRIP:=@STRIP@ |
49357
aaedb8343784
8198243: Add build time check for global operator new/delete in object files
erikj
parents:
49078
diff
changeset
|
513 |
OBJDUMP:=@OBJDUMP@ |
aaedb8343784
8198243: Add build time check for global operator new/delete in object files
erikj
parents:
49078
diff
changeset
|
514 |
CXXFILT:=@CXXFILT@ |
13697 | 515 |
|
516 |
LIPO:=@LIPO@ |
|
48032
9240097e2821
8139653: Freetype bundled on macosx, but not correctly linked
erikj
parents:
47989
diff
changeset
|
517 |
INSTALL_NAME_TOOL:=@INSTALL_NAME_TOOL@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
518 |
|
20363 | 519 |
# Options to linker to specify a mapfile. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
520 |
# (Note absence of := assignment, because we do not want to evaluate the macro body here) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
521 |
SET_SHARED_LIBRARY_MAPFILE=@SET_SHARED_LIBRARY_MAPFILE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
522 |
|
12801 | 523 |
# Options for C/CXX compiler to be used if linking is performed |
524 |
# using reorder file |
|
525 |
C_FLAG_REORDER:=@C_FLAG_REORDER@ |
|
526 |
||
13132 | 527 |
# |
528 |
# Options for generating debug symbols |
|
35032 | 529 |
COMPILE_WITH_DEBUG_SYMBOLS := @COMPILE_WITH_DEBUG_SYMBOLS@ |
530 |
COPY_DEBUG_SYMBOLS := @COPY_DEBUG_SYMBOLS@ |
|
531 |
ZIP_EXTERNAL_DEBUG_SYMBOLS := @ZIP_EXTERNAL_DEBUG_SYMBOLS@ |
|
532 |
||
13132 | 533 |
CFLAGS_DEBUG_SYMBOLS:=@CFLAGS_DEBUG_SYMBOLS@ |
534 |
||
535 |
# |
|
536 |
# Compress (or not) jars |
|
537 |
COMPRESS_JARS=@COMPRESS_JARS@ |
|
538 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
539 |
# Options to linker to specify the library name. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
540 |
# (Note absence of := assignment, because we do not want to evaluate the macro body here) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
541 |
SET_SHARED_LIBRARY_NAME=@SET_SHARED_LIBRARY_NAME@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
542 |
|
34596
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34594
diff
changeset
|
543 |
SHARED_LIBRARY_FLAGS=@SHARED_LIBRARY_FLAGS@ |
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34594
diff
changeset
|
544 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
545 |
# Set origin using the linker, ie use the relative path to the dependent library to find the dependees. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
546 |
# (Note absence of := assignment, because we do not want to evaluate the macro body here) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
547 |
SET_SHARED_LIBRARY_ORIGIN=@SET_SHARED_LIBRARY_ORIGIN@ |
13697 | 548 |
SET_EXECUTABLE_ORIGIN=@SET_EXECUTABLE_ORIGIN@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
549 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
550 |
# Different OS:es have different ways of naming shared libraries. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
551 |
# The SHARED_LIBRARY macro takes "verify" as and argument and returns: |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
552 |
# "libverify.so" or "libverify.dylib" or "verify.dll" depending on platform. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
553 |
# (Note absence of := assignment, because we do not want to evaluate the macro body here) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
554 |
SHARED_LIBRARY=@SHARED_LIBRARY@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
555 |
STATIC_LIBRARY=@STATIC_LIBRARY@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
556 |
LIBRARY_PREFIX:=@LIBRARY_PREFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
557 |
SHARED_LIBRARY_SUFFIX:=@SHARED_LIBRARY_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
558 |
STATIC_LIBRARY_SUFFIX:=@STATIC_LIBRARY_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
559 |
EXE_SUFFIX:=@EXE_SUFFIX@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
560 |
OBJ_SUFFIX:=@OBJ_SUFFIX@ |
33562
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32921
diff
changeset
|
561 |
STATIC_BUILD:=@STATIC_BUILD@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
562 |
|
32811
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32559
diff
changeset
|
563 |
STRIPFLAGS:=@STRIPFLAGS@ |
12801 | 564 |
|
22728
0a9d96bf2023
8036079: --with-boot-jdk-jvmargs configure options are ignored
mduigou
parents:
22722
diff
changeset
|
565 |
JAVA_FLAGS:=@JAVA_FLAGS@ |
23171 | 566 |
JAVA_FLAGS_BIG:=@JAVA_FLAGS_BIG@ |
567 |
JAVA_FLAGS_SMALL:=@JAVA_FLAGS_SMALL@ |
|
34101
a1db3b482137
8143296: javac-server/sjavac not compatible with LogFailures on Windows
erikj
parents:
33571
diff
changeset
|
568 |
JAVA_FLAGS_JAVAC:=@JAVA_FLAGS_JAVAC@ |
25854 | 569 |
JAVA_TOOL_FLAGS_SMALL:=@JAVA_TOOL_FLAGS_SMALL@ |
26907
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
570 |
SJAVAC_SERVER_JAVA_FLAGS:=@SJAVAC_SERVER_JAVA_FLAGS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
571 |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27593
diff
changeset
|
572 |
# The *_CMD variables are defined separately to be easily overridden in bootcycle-spec.gmk |
26907
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
573 |
# for bootcycle-images build. Make sure to keep them in sync. Do not use the *_CMD |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
574 |
# versions of the variables directly. |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
575 |
JAVA_CMD:=@JAVA@ |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
576 |
JAVAC_CMD:=@JAVAC@ |
47432
28d6070f5f2f
8189056: javadoc target for stable specdiff comparisons
ihse
parents:
47364
diff
changeset
|
577 |
JAVADOC_CMD:=@JAVADOC@ |
26907
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
578 |
JAR_CMD:=@JAR@ |
37771
30f2faf0e7a6
8153685: Parfait integration missing in the new tools (jmod and jlink)
erikj
parents:
37770
diff
changeset
|
579 |
JLINK_CMD := @JLINK@ |
30f2faf0e7a6
8153685: Parfait integration missing in the new tools (jmod and jlink)
erikj
parents:
37770
diff
changeset
|
580 |
JMOD_CMD := @JMOD@ |
26907
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
581 |
JARSIGNER_CMD:=@JARSIGNER@ |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
582 |
SJAVAC_SERVER_JAVA_CMD:=@SJAVAC_SERVER_JAVA@ |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
583 |
# These variables are meant to be used. They are defined with = instead of := to make |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
584 |
# it possible to override only the *_CMD variables. |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
585 |
JAVA=@FIXPATH@ $(JAVA_CMD) $(JAVA_FLAGS_BIG) $(JAVA_FLAGS) |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
586 |
JAVA_SMALL=@FIXPATH@ $(JAVA_CMD) $(JAVA_FLAGS_SMALL) $(JAVA_FLAGS) |
34101
a1db3b482137
8143296: javac-server/sjavac not compatible with LogFailures on Windows
erikj
parents:
33571
diff
changeset
|
587 |
JAVA_JAVAC=@FIXPATH@ $(JAVA_CMD) $(JAVA_FLAGS_JAVAC) $(JAVA_FLAGS) |
26907
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
588 |
JAVAC=@FIXPATH@ $(JAVAC_CMD) |
47432
28d6070f5f2f
8189056: javadoc target for stable specdiff comparisons
ihse
parents:
47364
diff
changeset
|
589 |
JAVADOC=@FIXPATH@ $(JAVADOC_CMD) |
26907
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
590 |
JAR=@FIXPATH@ $(JAR_CMD) |
37771
30f2faf0e7a6
8153685: Parfait integration missing in the new tools (jmod and jlink)
erikj
parents:
37770
diff
changeset
|
591 |
JLINK = @FIXPATH@ $(JLINK_CMD) $(JAVA_TOOL_FLAGS_SMALL) |
30f2faf0e7a6
8153685: Parfait integration missing in the new tools (jmod and jlink)
erikj
parents:
37770
diff
changeset
|
592 |
JMOD = @FIXPATH@ $(JMOD_CMD) $(JAVA_TOOL_FLAGS_SMALL) |
26907
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
593 |
JARSIGNER=@FIXPATH@ $(JARSIGNER_CMD) |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
594 |
# A specific java binary with specific options can be used to run |
da70acacfe57
8059658: Bootcycle build not actually using built image
erikj
parents:
26548
diff
changeset
|
595 |
# the long running background sjavac servers and other long running tasks. |
34101
a1db3b482137
8143296: javac-server/sjavac not compatible with LogFailures on Windows
erikj
parents:
33571
diff
changeset
|
596 |
SJAVAC_SERVER_JAVA=@FIXPATH@ @FIXPATH_DETACH_FLAG@ $(SJAVAC_SERVER_JAVA_CMD) \ |
a1db3b482137
8143296: javac-server/sjavac not compatible with LogFailures on Windows
erikj
parents:
33571
diff
changeset
|
597 |
$(SJAVAC_SERVER_JAVA_FLAGS) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
598 |
|
13697 | 599 |
# Hotspot sets this variable before reading the SPEC when compiling sa-jdi.jar. Avoid |
600 |
# overriding that value by using ?=. |
|
601 |
JAVAC_FLAGS?=@JAVAC_FLAGS@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
602 |
|
36506 | 603 |
|
39203
294ad181367d
8160722: Module summary generation fails on Windows 32bit
erikj
parents:
38924
diff
changeset
|
604 |
BUILD_JAVA_FLAGS := @BOOTCYCLE_JVM_ARGS_BIG@ |
36506 | 605 |
BUILD_JAVA=@FIXPATH@ $(BUILD_JDK)/bin/java $(BUILD_JAVA_FLAGS) |
48069
a358ebcfacfb
8192771: Boot JDK jar tool used to construct the modular JAR for java.jnlp
erikj
parents:
48068
diff
changeset
|
606 |
BUILD_JAR=@FIXPATH@ $(BUILD_JDK)/bin/jar |
36506 | 607 |
|
47364 | 608 |
# Interim langtools and rmic modules and arguments |
47989
f1ad41a05fb7
8191942: Replace jdeps use of jdk.internal.util.jar.VersionedStream with new public API
mchung
parents:
47824
diff
changeset
|
609 |
INTERIM_LANGTOOLS_BASE_MODULES := java.compiler jdk.compiler jdk.javadoc |
47364 | 610 |
INTERIM_LANGTOOLS_MODULES := $(addsuffix .interim, $(INTERIM_LANGTOOLS_BASE_MODULES)) |
611 |
INTERIM_LANGTOOLS_ADD_EXPORTS := \ |
|
612 |
--add-exports java.base/sun.reflect.annotation=jdk.compiler.interim \ |
|
48433 | 613 |
--add-exports java.base/jdk.internal.jmod=jdk.compiler.interim \ |
614 |
--add-exports java.base/jdk.internal.misc=jdk.compiler.interim \ |
|
47364 | 615 |
# |
616 |
INTERIM_LANGTOOLS_MODULES_COMMA := $(strip $(subst $(SPACE),$(COMMA),$(strip \ |
|
617 |
$(INTERIM_LANGTOOLS_MODULES)))) |
|
618 |
INTERIM_LANGTOOLS_ARGS := \ |
|
619 |
--limit-modules java.base,jdk.zipfs,$(INTERIM_LANGTOOLS_MODULES_COMMA) \ |
|
620 |
--add-modules $(INTERIM_LANGTOOLS_MODULES_COMMA) \ |
|
48068 | 621 |
--module-path $(BUILDTOOLS_OUTPUTDIR)/interim_langtools_modules \ |
47364 | 622 |
$(INTERIM_LANGTOOLS_ADD_EXPORTS) \ |
623 |
# |
|
624 |
JAVAC_MAIN_CLASS = -m jdk.compiler.interim/com.sun.tools.javac.Main |
|
625 |
JAVADOC_MAIN_CLASS = -m jdk.javadoc.interim/jdk.javadoc.internal.tool.Main |
|
36506 | 626 |
|
47364 | 627 |
INTERIM_RMIC_BASE_MODULES := jdk.rmic |
628 |
INTERIM_RMIC_MODULES := $(addsuffix .interim, $(INTERIM_RMIC_BASE_MODULES)) |
|
629 |
# |
|
48068 | 630 |
# Use = to delay expansion of PathList since it's not available in this file. |
48841 | 631 |
INTERIM_RMIC_ARGS = --limit-modules java.base,jdk.compiler,jdk.javadoc \ |
48068 | 632 |
--module-path $(call PathList, $(BUILDTOOLS_OUTPUTDIR)/interim_rmic_modules \ |
633 |
$(BUILDTOOLS_OUTPUTDIR)/interim_langtools_modules) \ |
|
47364 | 634 |
# |
635 |
||
15393
e3761cf4e010
8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents:
15058
diff
changeset
|
636 |
# You run the new javac using the boot jdk with $(BOOT_JDK)/bin/java $(NEW_JAVAC) ... |
27560 | 637 |
# Use = assignment to be able to override in bootcycle-spec.gmk |
36506 | 638 |
NEW_JAVAC = $(INTERIM_LANGTOOLS_ARGS) $(JAVAC_MAIN_CLASS) |
639 |
NEW_JAVADOC = $(INTERIM_LANGTOOLS_ARGS) $(JAVADOC_MAIN_CLASS) |
|
640 |
||
641 |
JLINK_KEEP_PACKAGED_MODULES:=@JLINK_KEEP_PACKAGED_MODULES@ |
|
642 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
643 |
# Base flags for RC |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
644 |
# Guarding this against resetting value. Legacy make files include spec multiple |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
645 |
# times. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
646 |
ifndef RC_FLAGS |
20363 | 647 |
RC_FLAGS:=@RC_FLAGS@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
648 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
649 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
650 |
# Tools adhering to a minimal and common standard of posix compliance. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
651 |
AWK:=@AWK@ |
13697 | 652 |
BASENAME:=@BASENAME@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
653 |
CAT:=@CAT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
654 |
CCACHE:=@CCACHE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
655 |
# CD is going away, but remains to cater for legacy makefiles. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
656 |
CD:=cd |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
657 |
CHMOD:=@CHMOD@ |
17661
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17593
diff
changeset
|
658 |
CODESIGN:=@CODESIGN@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
659 |
COMM:=@COMM@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
660 |
CP:=@CP@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
661 |
CPIO:=@CPIO@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
662 |
CUT:=@CUT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
663 |
DATE:=@DATE@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
664 |
DIFF:=@DIFF@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
665 |
DIRNAME:=@DIRNAME@ |
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
20275
diff
changeset
|
666 |
DSYMUTIL:=@DSYMUTIL@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
667 |
FIND:=@FIND@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
668 |
FIND_DELETE:=@FIND_DELETE@ |
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44078
diff
changeset
|
669 |
FLOCK:=@FLOCK@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
670 |
ECHO:=@ECHO@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
671 |
EGREP:=@EGREP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
672 |
FGREP:=@FGREP@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
673 |
GREP:=@GREP@ |
37972 | 674 |
GZIP:=@GZIP@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
675 |
HEAD:=@HEAD@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
676 |
LS:=@LS@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
677 |
LN:=@LN@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
678 |
MKDIR:=@MKDIR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
679 |
MV:=@MV@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
680 |
NAWK:=@NAWK@ |
32920 | 681 |
NICE:=@NICE@ |
45231 | 682 |
PANDOC:=@FIXPATH@ @PANDOC@ |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32559
diff
changeset
|
683 |
PATCH:=@PATCH@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
684 |
PRINTF:=@PRINTF@ |
48912 | 685 |
READLINK:=@READLINK@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
686 |
RM:=@RM@ |
33052 | 687 |
RMDIR:=@RMDIR@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
688 |
SED:=@SED@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
689 |
SH:=@SH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
690 |
SORT:=@SORT@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
691 |
TAR:=@TAR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
692 |
TAIL:=@TAIL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
693 |
TEE:=@TEE@ |
14111 | 694 |
TIME:=@TIME@ |
18425 | 695 |
IS_GNU_TIME:=@IS_GNU_TIME@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
696 |
TR:=@TR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
697 |
TOUCH:=@TOUCH@ |
15056
6a7cbe3b0f08
8005347: build-infra: Verify 'gnumake source' at the top level works ok
erikj
parents:
15055
diff
changeset
|
698 |
UNIQ:=@UNIQ@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
699 |
WC:=@WC@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
700 |
XARGS:=@XARGS@ |
42136
f872c8278074
8168037: Use ZIPEXE instead of ZIP to avoid clash with options for zip
ihse
parents:
41874
diff
changeset
|
701 |
ZIPEXE:=@ZIPEXE@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
702 |
UNZIP:=@UNZIP@ |
14111 | 703 |
MT:=@FIXPATH@ @MT@ |
704 |
RC:=@FIXPATH@ @RC@ |
|
705 |
DUMPBIN:=@FIXPATH@ @DUMPBIN@ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
706 |
CYGPATH:=@CYGPATH@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
707 |
LDD:=@LDD@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
708 |
OTOOL:=@OTOOL@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
709 |
READELF:=@READELF@ |
49078
039e63e471e1
8198859: Use elfedit to silence linker warnings on solaris
ihse
parents:
48912
diff
changeset
|
710 |
ELFEDIT:=@ELFEDIT@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
711 |
EXPR:=@EXPR@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
712 |
FILE:=@FILE@ |
44727 | 713 |
DOT:=@DOT@ |
12801 | 714 |
HG:=@HG@ |
13132 | 715 |
OBJCOPY:=@OBJCOPY@ |
14111 | 716 |
SETFILE:=@SETFILE@ |
16580
6acb502beafa
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
16578
diff
changeset
|
717 |
XATTR:=@XATTR@ |
17593
de6741d8a142
8007129: build-infra Add configure --with-jtreg option for location of JTREG
erikj
parents:
17352
diff
changeset
|
718 |
JT_HOME:=@JT_HOME@ |
de6741d8a142
8007129: build-infra Add configure --with-jtreg option for location of JTREG
erikj
parents:
17352
diff
changeset
|
719 |
JTREGEXE:=@JTREGEXE@ |
46196
822ca950ddaa
8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents:
46193
diff
changeset
|
720 |
JIB_JAR:=@JIB_JAR@ |
25034
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
24414
diff
changeset
|
721 |
XCODEBUILD=@XCODEBUILD@ |
37402 | 722 |
DTRACE := @DTRACE@ |
14111 | 723 |
FIXPATH:=@FIXPATH@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
724 |
|
38924
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
38546
diff
changeset
|
725 |
TAR_TYPE:=@TAR_TYPE@ |
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
38546
diff
changeset
|
726 |
TAR_CREATE_EXTRA_PARAM:=@TAR_CREATE_EXTRA_PARAM@ |
37972 | 727 |
TAR_INCLUDE_PARAM:=@TAR_INCLUDE_PARAM@ |
728 |
TAR_SUPPORTS_TRANSFORM:=@TAR_SUPPORTS_TRANSFORM@ |
|
729 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
730 |
# Build setup |
42532 | 731 |
ENABLE_AOT:=@ENABLE_AOT@ |
43388
509c3ebb5c97
8004842: Unify values of boolean make variables set in configure to true/false
ihse
parents:
43383
diff
changeset
|
732 |
ENABLE_INTREE_EC:=@ENABLE_INTREE_EC@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
733 |
USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
734 |
USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
735 |
USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@ |
48751
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48608
diff
changeset
|
736 |
LIBZ_CFLAGS:=@LIBZ_CFLAGS@ |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48608
diff
changeset
|
737 |
LIBZ_LIBS:=@LIBZ_LIBS@ |
13132 | 738 |
LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@ |
14111 | 739 |
MSVCR_DLL:=@MSVCR_DLL@ |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28285
diff
changeset
|
740 |
MSVCP_DLL:=@MSVCP_DLL@ |
50073
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49979
diff
changeset
|
741 |
UCRT_DLL_DIR:=@UCRT_DLL_DIR@ |
37967
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37764
diff
changeset
|
742 |
STLPORT_LIB:=@STLPORT_LIB@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
743 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
744 |
#################################################### |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
745 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
746 |
# INSTALLATION |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
747 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
748 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
749 |
# Common prefix for all installed files. Defaults to /usr/local, |
20363 | 750 |
# but /opt/myjdk is another common version. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
751 |
INSTALL_PREFIX=@prefix@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
752 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
753 |
# Directories containing architecture-dependent files should be relative to exec_prefix |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
754 |
INSTALL_EXECPREFIX=@exec_prefix@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
755 |
|
48406 | 756 |
# java,javac,javap etc are installed here. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
757 |
INSTALL_BINDIR=@bindir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
758 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
759 |
# Read only architecture-independent data |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
760 |
INSTALL_DATADIR=@datadir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
761 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
762 |
# Root of above. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
763 |
INSTALL_DATAROOTDIR=@datarootdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
764 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
765 |
# Doc files, other than info and man. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
766 |
INSTALL_DOCDIR=@docdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
767 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
768 |
# Html documentation |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
769 |
INSTALL_HTMLDIR=@htmldir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
770 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
771 |
# Installing C header files, JNI headers for example. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
772 |
INSTALL_INCLUDEDIR=@includedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
773 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
774 |
# Installing library files.... |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
775 |
INSTALL_INCLUDEDIR=@libdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
776 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
777 |
# Executables that other programs run. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
778 |
INSTALL_LIBEXECDIR=@libexecdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
779 |
|
20363 | 780 |
# Locale-dependent but architecture-independent data, such as message catalogs. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
781 |
INSTALL_LOCALEDIR=@localedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
782 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
783 |
# Modifiable single-machine data |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
784 |
INSTALL_LOCALSTATEDIR=@localstatedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
785 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
786 |
# Man pages |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
787 |
INSTALL_MANDIR=@mandir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
788 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
789 |
# Modifiable architecture-independent data. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
790 |
INSTALL_SHAREDSTATEDIR=@sharedstatedir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
791 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
792 |
# Read-only single-machine data |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
793 |
INSTALL_SYSCONFDIR=@sysconfdir@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
794 |
|
23163 | 795 |
#################################################### |
796 |
# |
|
797 |
# Libraries |
|
798 |
# |
|
799 |
||
24413 | 800 |
USE_EXTERNAL_LCMS:=@USE_EXTERNAL_LCMS@ |
801 |
LCMS_CFLAGS:=@LCMS_CFLAGS@ |
|
802 |
LCMS_LIBS:=@LCMS_LIBS@ |
|
803 |
||
23163 | 804 |
USE_EXTERNAL_LIBPNG:=@USE_EXTERNAL_LIBPNG@ |
805 |
PNG_LIBS:=@PNG_LIBS@ |
|
806 |
PNG_CFLAGS:=@PNG_CFLAGS@ |
|
807 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
808 |
#################################################### |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
809 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
810 |
# Misc |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
811 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
812 |
|
16581
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
16580
diff
changeset
|
813 |
INCLUDE_SA=@INCLUDE_SA@ |
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42530
diff
changeset
|
814 |
INCLUDE_GRAAL=@INCLUDE_GRAAL@ |
16581
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
16580
diff
changeset
|
815 |
|
12801 | 816 |
OS_VERSION_MAJOR:=@OS_VERSION_MAJOR@ |
817 |
OS_VERSION_MINOR:=@OS_VERSION_MINOR@ |
|
818 |
OS_VERSION_MICRO:=@OS_VERSION_MICRO@ |
|
819 |
||
15058
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
820 |
# Images directory definitions |
27560 | 821 |
JDK_IMAGE_SUBDIR:=jdk |
822 |
JRE_IMAGE_SUBDIR:=jre |
|
28285 | 823 |
|
16578
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
824 |
# Colon left out to be able to override output dir for bootcycle-images |
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
825 |
JDK_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JDK_IMAGE_SUBDIR) |
7a35b47cb9e5
8006828: "SKIP_BOOT_CYCLE=false" must work in new building infrastructure
erikj
parents:
15914
diff
changeset
|
826 |
JRE_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(JRE_IMAGE_SUBDIR) |
15058
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
827 |
|
28285 | 828 |
# Test image, as above |
829 |
TEST_IMAGE_SUBDIR:=test |
|
830 |
TEST_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(TEST_IMAGE_SUBDIR) |
|
831 |
||
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
832 |
# Symbols image |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
833 |
SYMBOLS_IMAGE_SUBDIR:=symbols |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
834 |
SYMBOLS_IMAGE_DIR=$(IMAGES_OUTPUTDIR)/$(SYMBOLS_IMAGE_SUBDIR) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29304
diff
changeset
|
835 |
|
37770 | 836 |
# Interim image |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41652
diff
changeset
|
837 |
INTERIM_JMODS_DIR := $(SUPPORT_OUTPUTDIR)/interim-jmods |
37770 | 838 |
INTERIM_IMAGE_DIR := $(SUPPORT_OUTPUTDIR)/interim-image |
839 |
||
37972 | 840 |
# Docs image |
841 |
DOCS_IMAGE_SUBDIR := docs |
|
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41458
diff
changeset
|
842 |
DOCS_IMAGE_DIR = $(IMAGES_OUTPUTDIR)/$(DOCS_IMAGE_SUBDIR) |
45103 | 843 |
# Output docs directly into image |
844 |
DOCS_OUTPUTDIR := $(DOCS_IMAGE_DIR) |
|
37972 | 845 |
|
15058
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
846 |
# Macosx bundles directory definitions |
37972 | 847 |
JDK_MACOSX_BUNDLE_SUBDIR=jdk-bundle |
848 |
JRE_MACOSX_BUNDLE_SUBDIR=jre-bundle |
|
30094 | 849 |
JDK_MACOSX_BUNDLE_DIR=$(IMAGES_OUTPUTDIR)/$(JDK_MACOSX_BUNDLE_SUBDIR) |
850 |
JRE_MACOSX_BUNDLE_DIR=$(IMAGES_OUTPUTDIR)/$(JRE_MACOSX_BUNDLE_SUBDIR) |
|
37972 | 851 |
JDK_MACOSX_CONTENTS_SUBDIR=jdk-$(VERSION_NUMBER).jdk/Contents |
852 |
JRE_MACOSX_CONTENTS_SUBDIR=jre-$(VERSION_NUMBER).jre/Contents |
|
853 |
JDK_MACOSX_CONTENTS_DIR=$(JDK_MACOSX_BUNDLE_DIR)/$(JDK_MACOSX_CONTENTS_SUBDIR) |
|
854 |
JRE_MACOSX_CONTENTS_DIR=$(JRE_MACOSX_BUNDLE_DIR)/$(JRE_MACOSX_CONTENTS_SUBDIR) |
|
855 |
||
856 |
# Bundle names |
|
857 |
BASE_NAME := $(VERSION_SHORT)+$(VERSION_BUILD)_$(OPENJDK_TARGET_BUNDLE_PLATFORM) |
|
858 |
ifeq ($(DEBUG_LEVEL), fastdebug) |
|
859 |
DEBUG_PART := -debug |
|
860 |
else ifneq ($(DEBUG_LEVEL), release) |
|
861 |
DEBUG_PART := -$(DEBUG_LEVEL) |
|
862 |
endif |
|
50511 | 863 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
864 |
JDK_BUNDLE_EXTENSION := zip |
|
865 |
else |
|
866 |
JDK_BUNDLE_EXTENSION := tar.gz |
|
867 |
endif |
|
868 |
JDK_BUNDLE_NAME := jdk-$(BASE_NAME)_bin$(DEBUG_PART).$(JDK_BUNDLE_EXTENSION) |
|
37972 | 869 |
JDK_SYMBOLS_BUNDLE_NAME := jdk-$(BASE_NAME)_bin$(DEBUG_PART)-symbols.tar.gz |
47440
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47432
diff
changeset
|
870 |
TEST_DEMOS_BUNDLE_NAME := jdk-$(BASE_NAME)_bin-tests-demos$(DEBUG_PART).tar.gz |
37972 | 871 |
TEST_BUNDLE_NAME := jdk-$(BASE_NAME)_bin-tests$(DEBUG_PART).tar.gz |
872 |
DOCS_BUNDLE_NAME := jdk-$(BASE_NAME)_doc-api-spec$(DEBUG_PART).tar.gz |
|
873 |
||
874 |
JDK_BUNDLE := $(BUNDLES_OUTPUTDIR)/$(JDK_BUNDLE_NAME) |
|
875 |
JDK_SYMBOLS_BUNDLE := $(BUNDLES_OUTPUTDIR)/$(JDK_SYMBOLS_BUNDLE_NAME) |
|
47440
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47432
diff
changeset
|
876 |
TEST_DEMOS_BUNDLE := $(BUNDLES_OUTPUTDIR)/$(TEST_DEMOS_BUNDLE_NAME) |
37972 | 877 |
TEST_BUNDLE := $(BUNDLES_OUTPUTDIR)/$(TEST_BUNDLE_NAME) |
878 |
DOCS_BUNDLE := $(BUNDLES_OUTPUTDIR)/$(DOCS_BUNDLE_NAME) |
|
15058
61c4ac49cbda
8005635: build-infra: Support building install in jprt
erikj
parents:
15057
diff
changeset
|
879 |
|
22714
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
880 |
# This macro is called to allow inclusion of closed source counterparts. |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
881 |
# Unless overridden in closed sources, it expands to nothing. |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27593
diff
changeset
|
882 |
# Usage: This function is called in an open makefile, with the following |
47314 | 883 |
# argument: |
884 |
# $1 the name of the makefile |
|
22714
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
885 |
define IncludeCustomExtension |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
886 |
endef |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22711
diff
changeset
|
887 |
|
13697 | 888 |
# Include the custom-spec.gmk file if it exists |
889 |
-include $(dir @SPEC@)/custom-spec.gmk |