author | lancea |
Wed, 20 Jun 2018 16:08:14 -0400 | |
branch | JDK-8188051-branch |
changeset 56798 | 3b438b3fef46 |
parent 50490 | cbae0e359538 |
child 51215 | 936823fcf202 |
permissions | -rw-r--r-- |
27560 | 1 |
# |
48841 | 2 |
# Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. |
27560 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
default: all |
|
27 |
||
28 |
include $(SPEC) |
|
29 |
include MakeBase.gmk |
|
34116
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33437
diff
changeset
|
30 |
include Modules.gmk |
27560 | 31 |
|
32 |
TOOL_TARGETS := |
|
28356 | 33 |
JDK_TARGETS := |
27560 | 34 |
JRE_TARGETS := |
35 |
||
36 |
# Hook to include the corresponding custom file, if present. |
|
47314 | 37 |
$(eval $(call IncludeCustomExtension, Images-pre.gmk)) |
27560 | 38 |
|
39 |
############################################################################ |
|
40 |
||
36543
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
41 |
# All modules for the current target platform. |
a8ce27ddc757
8152197: Single place to specify module-specific information for images build
mchung
parents:
36506
diff
changeset
|
42 |
ALL_MODULES := $(call FindAllModules) |
27560 | 43 |
|
36725 | 44 |
$(eval $(call ReadImportMetaData)) |
27560 | 45 |
|
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37865
diff
changeset
|
46 |
JRE_MODULES += $(filter $(ALL_MODULES), $(BOOT_MODULES) \ |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37865
diff
changeset
|
47 |
$(PLATFORM_MODULES) $(JRE_TOOL_MODULES)) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37865
diff
changeset
|
48 |
JDK_MODULES += $(ALL_MODULES) |
36506 | 49 |
|
37770 | 50 |
JRE_MODULES_LIST := $(call CommaList, $(JRE_MODULES)) |
51 |
JDK_MODULES_LIST := $(call CommaList, $(JDK_MODULES)) |
|
36506 | 52 |
|
53 |
################################################################################ |
|
54 |
||
55 |
BASE_RELEASE_FILE := $(JDK_OUTPUTDIR)/release |
|
56 |
||
57 |
JMODS := $(wildcard $(IMAGES_OUTPUTDIR)/jmods/*.jmod) |
|
27560 | 58 |
|
59 |
# Use this file inside the image as target for make rule |
|
60 |
JIMAGE_TARGET_FILE := bin/java$(EXE_SUFFIX) |
|
61 |
||
38845
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
62 |
JLINK_ORDER_RESOURCES := **module-info.class |
40612
cec3daf6324a
8164858: Enable build-time use of java.lang.invoke resolve tracing
redestad
parents:
40241
diff
changeset
|
63 |
JLINK_JLI_CLASSES := |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
64 |
ifeq ($(ENABLE_GENERATE_CLASSLIST), true) |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41532
diff
changeset
|
65 |
JLINK_ORDER_RESOURCES += @$(SUPPORT_OUTPUTDIR)/link_opt/classlist |
43783
35fe9d6f5075
8175026: Capture build-time parameters to --generate-jli-classes
redestad
parents:
43384
diff
changeset
|
66 |
JLINK_JLI_CLASSES := --generate-jli-classes=@$(SUPPORT_OUTPUTDIR)/link_opt/default_jli_trace.txt |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
67 |
endif |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
68 |
JLINK_ORDER_RESOURCES += \ |
38845
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
69 |
/java.base/java/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
70 |
/java.base/jdk/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
71 |
/java.base/sun/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
72 |
/java.base/com/** \ |
6d03072cdab8
8158402: jlink: should use regex for all pattern operations (--order-resources or --exclude-resources)
jlaskey
parents:
38546
diff
changeset
|
73 |
/jdk.localedata/** \ |
37865
94ea10488f02
8156756: Enable build-time use of resource ordering plugin
redestad
parents:
37770
diff
changeset
|
74 |
# |
94ea10488f02
8156756: Enable build-time use of resource ordering plugin
redestad
parents:
37770
diff
changeset
|
75 |
|
42287
925cf8cf736c
8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents:
42286
diff
changeset
|
76 |
JLINK_TOOL := $(JLINK) -J-Djlink.debug=true \ |
925cf8cf736c
8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents:
42286
diff
changeset
|
77 |
--module-path $(IMAGES_OUTPUTDIR)/jmods \ |
49886
22d36f1c0994
8202210: jlink uses little-endian for big-endian cross-compilation targets
shade
parents:
48912
diff
changeset
|
78 |
--endian $(OPENJDK_TARGET_CPU_ENDIAN) \ |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
79 |
--release-info $(BASE_RELEASE_FILE) \ |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
80 |
--order-resources=$(call CommaList, $(JLINK_ORDER_RESOURCES)) \ |
42505
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42293
diff
changeset
|
81 |
--dedup-legal-notices=error-if-not-same-content \ |
40612
cec3daf6324a
8164858: Enable build-time use of java.lang.invoke resolve tracing
redestad
parents:
40241
diff
changeset
|
82 |
$(JLINK_JLI_CLASSES) \ |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37978
diff
changeset
|
83 |
# |
36506 | 84 |
|
42140
a2ea75dd99dc
8170280: Enable -g for all java compilation in the build
erikj
parents:
41875
diff
changeset
|
85 |
JLINK_JRE_EXTRA_OPTS := --no-man-pages --no-header-files --strip-debug |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
86 |
|
36506 | 87 |
ifeq ($(JLINK_KEEP_PACKAGED_MODULES), true) |
41532
76dffc133464
8167558: Add new JMOD section for header files and man pages
mchung
parents:
41458
diff
changeset
|
88 |
JLINK_JDK_EXTRA_OPTS := --keep-packaged-modules $(JDK_IMAGE_DIR)/jmods |
36506 | 89 |
endif |
90 |
||
91 |
$(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
|
92 |
$(call DependOnVariable, JDK_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
50490 | 93 |
$(ECHO) Creating jdk image |
36506 | 94 |
$(RM) -r $(JDK_IMAGE_DIR) |
48912 | 95 |
$(call ExecuteWithLog, $(SUPPORT_OUTPUTDIR)/images/jdk, \ |
96 |
$(JLINK_TOOL) --add-modules $(JDK_MODULES_LIST) \ |
|
97 |
$(JLINK_JDK_EXTRA_OPTS) \ |
|
98 |
--output $(JDK_IMAGE_DIR) \ |
|
99 |
) |
|
27560 | 100 |
$(TOUCH) $@ |
101 |
||
36506 | 102 |
$(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \ |
103 |
$(call DependOnVariable, JRE_MODULES_LIST) $(BASE_RELEASE_FILE) |
|
50490 | 104 |
$(ECHO) Creating legacy jre image |
36506 | 105 |
$(RM) -r $(JRE_IMAGE_DIR) |
48912 | 106 |
$(call ExecuteWithLog, $(SUPPORT_OUTPUTDIR)/images/jre, \ |
107 |
$(JLINK_TOOL) --add-modules $(JRE_MODULES_LIST) \ |
|
108 |
$(JLINK_JRE_EXTRA_OPTS) \ |
|
109 |
--output $(JRE_IMAGE_DIR) \ |
|
110 |
) |
|
27560 | 111 |
$(TOUCH) $@ |
112 |
||
113 |
TOOL_JRE_TARGETS := $(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
114 |
TOOL_JDK_TARGETS := $(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE) |
|
115 |
||
116 |
################################################################################ |
|
117 |
# /man dir |
|
118 |
# |
|
119 |
# All variables in this section are assigned with simple =, without :, to enable |
|
120 |
# more selective overriding from the custom version of this file. |
|
121 |
# |
|
122 |
# Avoid evaluating this whole section on windows for speed and stability |
|
123 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
|
124 |
JRE_MAN_PAGES += \ |
|
125 |
java.1 \ |
|
126 |
jjs.1 \ |
|
127 |
keytool.1 \ |
|
128 |
orbd.1 \ |
|
129 |
pack200.1 \ |
|
130 |
rmid.1 \ |
|
131 |
rmiregistry.1 \ |
|
132 |
servertool.1 \ |
|
133 |
unpack200.1 |
|
134 |
||
135 |
JDK_MAN_PAGES += \ |
|
136 |
$(JRE_MAN_PAGES) \ |
|
137 |
idlj.1 \ |
|
138 |
jar.1 \ |
|
139 |
jarsigner.1 \ |
|
140 |
javac.1 \ |
|
141 |
javadoc.1 \ |
|
142 |
javap.1 \ |
|
143 |
jconsole.1 \ |
|
144 |
jcmd.1 \ |
|
145 |
jdb.1 \ |
|
146 |
jdeps.1 \ |
|
147 |
jinfo.1 \ |
|
148 |
jmap.1 \ |
|
149 |
jps.1 \ |
|
150 |
jrunscript.1 \ |
|
151 |
jstack.1 \ |
|
152 |
jstat.1 \ |
|
153 |
jstatd.1 \ |
|
154 |
rmic.1 \ |
|
48841 | 155 |
serialver.1 |
27560 | 156 |
|
157 |
# This variable is potentially overridden in the closed makefile. |
|
47217 | 158 |
MAN_SRC_BASEDIR ?= $(TOPDIR)/src |
27560 | 159 |
|
160 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
|
161 |
MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/linux/doc |
|
162 |
MAN1_SUBDIR = man |
|
163 |
endif |
|
164 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
165 |
MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/solaris/doc |
|
166 |
MAN1_SUBDIR = sun/man/man1 |
|
167 |
endif |
|
168 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
169 |
MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/bsd/doc |
|
170 |
MAN1_SUBDIR = man |
|
171 |
endif |
|
172 |
||
173 |
$(JRE_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/% |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
174 |
$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@)) |
27560 | 175 |
$(install-file) |
176 |
||
177 |
$(JDK_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/% |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
178 |
$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@)) |
27560 | 179 |
$(install-file) |
180 |
||
181 |
$(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
182 |
$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@)) |
30093
c8c926543552
8077992: Eliminate JDK build dependency of native2ascii and update Japanese nroff man pages to UTF-8 encoding
ihse
parents:
30091
diff
changeset
|
183 |
$(install-file) |
27560 | 184 |
|
185 |
$(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
186 |
$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@)) |
30093
c8c926543552
8077992: Eliminate JDK build dependency of native2ascii and update Japanese nroff man pages to UTF-8 encoding
ihse
parents:
30091
diff
changeset
|
187 |
$(install-file) |
27560 | 188 |
|
189 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
190 |
$(JRE_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
191 |
$(call LogInfo, Converting $(patsubst $(OUTPUTDIR)/%,%,$@)) |
27560 | 192 |
$(install-file) |
193 |
||
194 |
$(JDK_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
195 |
$(call LogInfo, Converting $(patsubst $(OUTPUTDIR)/%,%,$@)) |
27560 | 196 |
$(install-file) |
197 |
endif |
|
198 |
||
199 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), linux macosx), ) |
|
200 |
$(JRE_IMAGE_DIR)/man/ja: |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
201 |
$(call LogInfo, Creating $(patsubst $(OUTPUTDIR)/%,%,$@)) |
27560 | 202 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
203 |
||
204 |
$(JDK_IMAGE_DIR)/man/ja: |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
205 |
$(call LogInfo, Creating $(patsubst $(OUTPUTDIR)/%,%,$@)) |
27560 | 206 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
207 |
endif |
|
208 |
||
209 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
210 |
JRE_MAN_PAGE_LIST = $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \ |
|
211 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja/man1/, $(JRE_MAN_PAGES)) \ |
|
212 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \ |
|
213 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JRE_MAN_PAGES)) |
|
214 |
||
215 |
JDK_MAN_PAGE_LIST = $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \ |
|
216 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja/man1/, $(JDK_MAN_PAGES)) \ |
|
217 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \ |
|
218 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JDK_MAN_PAGES)) |
|
219 |
endif |
|
220 |
||
221 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), linux macosx), ) |
|
222 |
JRE_MAN_PAGE_LIST = $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \ |
|
223 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \ |
|
224 |
$(JRE_IMAGE_DIR)/man/ja |
|
225 |
||
226 |
JDK_MAN_PAGE_LIST = $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \ |
|
227 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \ |
|
228 |
$(JDK_IMAGE_DIR)/man/ja |
|
229 |
endif |
|
230 |
||
231 |
JRE_TARGETS += $(JRE_MAN_PAGE_LIST) |
|
232 |
JDK_TARGETS += $(JDK_MAN_PAGE_LIST) |
|
233 |
endif # Windows |
|
234 |
||
235 |
################################################################################ |
|
236 |
# src.zip |
|
237 |
||
42523 | 238 |
$(JDK_IMAGE_DIR)/lib/src.zip: $(SUPPORT_OUTPUTDIR)/src.zip |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
239 |
$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@)) |
27560 | 240 |
$(install-file) |
241 |
||
42523 | 242 |
JDK_TARGETS += $(JDK_IMAGE_DIR)/lib/src.zip |
27560 | 243 |
|
244 |
################################################################################ |
|
245 |
# /demo dir |
|
41260 | 246 |
# Avoid doing the expensive find unless called with "jdk" as target. |
247 |
ifneq ($(filter jdk, $(MAKECMDGOALS)), ) |
|
248 |
||
249 |
DEMO_FILES := \ |
|
250 |
$(if $(wildcard $(SUPPORT_OUTPUTDIR)/demos/image), \ |
|
251 |
$(shell $(FIND) $(SUPPORT_OUTPUTDIR)/demos/image \ |
|
47354
e8bda13da40b
8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents:
47314
diff
changeset
|
252 |
-type f -a ! \( -name "_the*" -o -name "javac_state" \) ) \ |
41260 | 253 |
) |
254 |
||
255 |
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), true) |
|
256 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
257 |
DEMO_FILES := $(call not-containing, .dSYM, $(DEMO_FILES)) |
|
258 |
else |
|
259 |
DEMO_FILES := $(filter-out %.debuginfo %.pdb %.map, $(DEMO_FILES)) |
|
260 |
endif |
|
261 |
endif |
|
262 |
||
35008 | 263 |
$(eval $(call SetupCopyFiles, JDK_COPY_DEMOS, \ |
264 |
SRC := $(SUPPORT_OUTPUTDIR)/demos/image, \ |
|
265 |
DEST := $(JDK_IMAGE_DIR)/demo, \ |
|
41260 | 266 |
FILES := $(DEMO_FILES), \ |
35008 | 267 |
)) |
27560 | 268 |
|
35008 | 269 |
JDK_TARGETS += $(JDK_COPY_DEMOS) |
27560 | 270 |
endif |
271 |
||
272 |
################################################################################ |
|
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
273 |
# Code coverage data files |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
274 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
275 |
ifeq ($(GCOV_ENABLED), true) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
276 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
277 |
GCOV_FIND_EXPR := -type f -name "*.gcno" |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
278 |
|
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
279 |
$(eval $(call SetupCopyFiles,COPY_HOTSPOT_GCOV_GCNO, \ |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
280 |
SRC := $(OUTPUTDIR), \ |
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
281 |
DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \ |
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
282 |
FILES := $(shell $(FIND) $(HOTSPOT_OUTPUTDIR) $(GCOV_FIND_EXPR)))) |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
283 |
|
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
284 |
SYMBOLS_TARGETS += $(COPY_HOTSPOT_GCOV_GCNO) |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
285 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
286 |
$(eval $(call SetupCopyFiles,COPY_JDK_GCOV_GCNO, \ |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47224
diff
changeset
|
287 |
SRC := $(OUTPUTDIR), \ |
29444
b6186ae3a799
8075236: Change layout of gcov .gcno files in symbols image
erikj
parents:
29305
diff
changeset
|
288 |
DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \ |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
289 |
FILES := $(shell $(FIND) $(SUPPORT_OUTPUTDIR)/native $(GCOV_FIND_EXPR)))) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
290 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
291 |
SYMBOLS_TARGETS += $(COPY_JDK_GCOV_GCNO) |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
292 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
293 |
endif |
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
294 |
|
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29303
diff
changeset
|
295 |
################################################################################ |
37653 | 296 |
# Debug symbols |
297 |
# Since debug symbols are not included in the jmod files, they need to be copied |
|
298 |
# in manually after generating the images. |
|
299 |
||
300 |
ALL_JDK_MODULES := $(JDK_MODULES) |
|
301 |
ALL_JRE_MODULES := $(sort $(JRE_MODULES), $(foreach m, $(JRE_MODULES), \ |
|
302 |
$(call FindTransitiveDepsForModule, $m))) |
|
303 |
||
304 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
305 |
LIBS_TARGET_SUBDIR := bin |
|
306 |
else |
|
307 |
LIBS_TARGET_SUBDIR := lib |
|
308 |
endif |
|
309 |
||
310 |
# Param 1 - dir to find debuginfo files in |
|
311 |
FindDebuginfoFiles = \ |
|
312 |
$(wildcard $(addprefix $1/*, $(DEBUGINFO_SUFFIXES)) \ |
|
313 |
$(addprefix $1/*/*, $(DEBUGINFO_SUFFIXES)) \ |
|
314 |
$(addprefix $1/*/*/*, $(DEBUGINFO_SUFFIXES))) |
|
315 |
||
41260 | 316 |
# Pick the correct debug info files to copy, either zipped or not. |
317 |
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), true) |
|
318 |
DEBUGINFO_SUFFIXES += .diz |
|
319 |
else |
|
320 |
DEBUGINFO_SUFFIXES := .debuginfo .pdb .map |
|
321 |
# On Macosx, if debug symbols have not been zipped, find all files inside *.dSYM |
|
322 |
# dirs. |
|
323 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
324 |
$(eval $(call FillCacheFind, \ |
|
325 |
$(SUPPORT_OUTPUTDIR)/modules_cmds $(SUPPORT_OUTPUTDIR)/modules_libs)) |
|
326 |
FindDebuginfoFiles = \ |
|
327 |
$(if $(wildcard $1), $(call containing, .dSYM/, $(call CacheFind, $1))) |
|
328 |
endif |
|
37653 | 329 |
endif |
330 |
||
331 |
# Param 1 - either JDK or JRE |
|
332 |
SetupCopyDebuginfo = \ |
|
333 |
$(foreach m, $(ALL_$1_MODULES), \ |
|
334 |
$(eval $(call SetupCopyFiles, COPY_$1_LIBS_DEBUGINFO_$m, \ |
|
335 |
SRC := $(SUPPORT_OUTPUTDIR)/modules_libs/$m, \ |
|
336 |
DEST := $($1_IMAGE_DIR)/$(LIBS_TARGET_SUBDIR), \ |
|
337 |
FILES := $(call FindDebuginfoFiles, \ |
|
338 |
$(SUPPORT_OUTPUTDIR)/modules_libs/$m), \ |
|
339 |
)) \ |
|
340 |
$(eval $1_TARGETS += $$(COPY_$1_LIBS_DEBUGINFO_$m)) \ |
|
341 |
) |
|
342 |
||
343 |
# No space before argument to avoid having to put $(strip ) everywhere in |
|
344 |
# implementation above. |
|
345 |
$(call SetupCopyDebuginfo,JDK) |
|
346 |
$(call SetupCopyDebuginfo,JRE) |
|
347 |
||
348 |
################################################################################ |
|
27560 | 349 |
|
350 |
# Include custom post hook here to make it possible to augment the target lists |
|
351 |
# before actual target prerequisites are declared. |
|
47314 | 352 |
$(eval $(call IncludeCustomExtension, Images-post.gmk)) |
27560 | 353 |
|
354 |
################################################################################ |
|
355 |
||
356 |
$(JRE_TARGETS): $(TOOL_JRE_TARGETS) |
|
357 |
$(JDK_TARGETS): $(TOOL_JDK_TARGETS) |
|
358 |
||
47454
7a7bc84f4b6c
8189618: [aix] No jre image is created during images step
mbaesken
parents:
47354
diff
changeset
|
359 |
jdk: $(TOOL_JDK_TARGETS) $(JDK_TARGETS) |
7a7bc84f4b6c
8189618: [aix] No jre image is created during images step
mbaesken
parents:
47354
diff
changeset
|
360 |
jre: $(TOOL_JRE_TARGETS) $(JRE_TARGETS) |
41260 | 361 |
symbols: $(SYMBOLS_TARGETS) |
362 |
||
363 |
all: jdk jre symbols |
|
27560 | 364 |
|
49979 | 365 |
.PHONY: default all jdk jre symbols |