author | stefank |
Tue, 14 May 2019 10:54:23 +0200 | |
changeset 54840 | a82655619efd |
parent 54380 | e297c7bb6469 |
child 58720 | ae0af9fb3dbb |
permissions | -rw-r--r-- |
37972 | 1 |
# |
54348 | 2 |
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. |
37972 | 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 |
|
30 |
||
31 |
PRODUCT_TARGETS := |
|
54348 | 32 |
LEGACY_TARGETS := |
37972 | 33 |
TEST_TARGETS := |
34 |
DOCS_TARGETS := |
|
35 |
||
36 |
# On Windows tar frequently complains that "file changed as we read it" for |
|
37 |
# some random source files. This seems to be cause by anti virus scanners and |
|
38 |
# is most likely safe to ignore. When it happens, tar returns '1'. |
|
53683 | 39 |
ifeq ($(call isBuildOs, windows), true) |
37972 | 40 |
TAR_IGNORE_EXIT_VALUE := || test "$$$$?" = "1" |
41 |
endif |
|
42 |
||
43 |
# Hook to include the corresponding custom file, if present. |
|
47314 | 44 |
$(eval $(call IncludeCustomExtension, Bundles-pre.gmk)) |
37972 | 45 |
################################################################################ |
46 |
# BUNDLE : Name of bundle to create |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
47 |
# FILES : Files in BASE_DIRS to add to bundle |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
48 |
# SPECIAL_INCLUDES : List of directories inside BASE_DIRS to look for additional |
37972 | 49 |
# files in. These files will not get proper dependency handling. Use when |
50 |
# files or directories may contain spaces. |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
51 |
# BASE_DIRS : Base directories for the root dir in the bundle. |
37972 | 52 |
# SUBDIR : Optional name of root dir in bundle. |
53 |
SetupBundleFile = $(NamedParamsMacroTemplate) |
|
54 |
define SetupBundleFileBody |
|
55 |
||
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
56 |
$$(foreach d, $$($1_BASE_DIRS), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
57 |
$$(eval $1_$$d_RELATIVE_FILES := $$$$(patsubst $$d/%, %, \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
58 |
$$$$(filter $$d/%, $$$$($1_FILES)))) \ |
42507
a3499e58c108
8171167: Build fails in Mach 5 with "File name too long."
erikj
parents:
42506
diff
changeset
|
59 |
$$(eval $1_$$d_LIST_FILE := \ |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
60 |
$(SUPPORT_OUTPUTDIR)/bundles/_$1_$$$$(subst /,_,$$$$(patsubst $(OUTPUTDIR)/%,%,$$d)_files)) \ |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
61 |
) |
37972 | 62 |
|
63 |
ifneq ($$(filter %.tar.gz, $$($1_BUNDLE_NAME)), ) |
|
64 |
$1_TYPE := tar.gz |
|
65 |
else ifneq ($$(filter %.zip, $$($1_BUNDLE_NAME)), ) |
|
66 |
$1_TYPE := zip |
|
67 |
else |
|
68 |
$$(error Unknown bundle type $$($1_BUNDLE_NAME)) |
|
69 |
endif |
|
70 |
||
71 |
$$(call SetIfEmpty, $1_UNZIP_DEBUGINFO, false) |
|
72 |
||
73 |
$(BUNDLES_OUTPUTDIR)/$$($1_BUNDLE_NAME): $$($1_FILES) |
|
52065
dea8a62cdfc3
8211724: Change mkdir -p to MakeDir macro where possible
erikj
parents:
50490
diff
changeset
|
74 |
$$(call MakeTargetDir) |
54380 | 75 |
# If any of the files contain a space in the file name, FindFiles |
47334
09d386ddaa42
8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents:
47314
diff
changeset
|
76 |
# will have replaced it with ?. Tar does not accept that so need to |
09d386ddaa42
8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents:
47314
diff
changeset
|
77 |
# switch it back. |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
78 |
$$(foreach d, $$($1_BASE_DIRS), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
79 |
$$(eval $$(call ListPathsSafely, \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
80 |
$1_$$d_RELATIVE_FILES, $$($1_$$d_LIST_FILE))) \ |
47334
09d386ddaa42
8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents:
47314
diff
changeset
|
81 |
$$(CAT) $$($1_$$d_LIST_FILE) | $$(TR) '?' ' ' > $$($1_$$d_LIST_FILE).tmp \ |
09d386ddaa42
8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents:
47314
diff
changeset
|
82 |
&& $(MV) $$($1_$$d_LIST_FILE).tmp $$($1_$$d_LIST_FILE) $$(NEWLINE) \ |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
83 |
) |
37972 | 84 |
ifneq ($$($1_SPECIAL_INCLUDES), ) |
85 |
$$(foreach i, $$($1_SPECIAL_INCLUDES), \ |
|
43051
6b8a8764b1fe
8172577: Builds for OS X after build 149 does not include Java Mission Control.app
erikj
parents:
43043
diff
changeset
|
86 |
$$(foreach d, $$($1_BASE_DIRS), \ |
6b8a8764b1fe
8172577: Builds for OS X after build 149 does not include Java Mission Control.app
erikj
parents:
43043
diff
changeset
|
87 |
($(CD) $$d && $(FIND) $$i >> $$($1_$$d_LIST_FILE)) ; )) |
37972 | 88 |
endif |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
89 |
ifeq ($$($1_SUBDIR)-$$($1_TYPE)-$$($1_UNZIP_DEBUGINFO), .-zip-false) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
90 |
# If no subdir is specified, zip can be done directly from BASE_DIRS. |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
91 |
$$(foreach d, $$($1_BASE_DIRS), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
92 |
( $(CD) $$d \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
93 |
&& $(ZIPEXE) -qru $$@ . -i@$$($1_$$d_LIST_FILE) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
94 |
|| test "$$$$?" = "12" )$$(NEWLINE)) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
95 |
else ifeq ($$($1_SUBDIR)-$$($1_TYPE)-$$($1_UNZIP_DEBUGINFO)-$$(words $$($1_BASE_DIRS)), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
96 |
.-tar.gz-false-1) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
97 |
# If no subdir is specified and only one BASE_DIR, tar.gz can be done |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
98 |
# directly from BASE_DIR. |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
99 |
$(CD) $$($1_BASE_DIRS) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
100 |
&& ( $(TAR) cf - $(TAR_CREATE_EXTRA_PARAM) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
101 |
-$(TAR_INCLUDE_PARAM) $$($1_$$($1_BASE_DIRS)_LIST_FILE) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
102 |
$(TAR_IGNORE_EXIT_VALUE) ) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
103 |
| $(GZIP) > $$@ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
104 |
else ifeq ($$($1_TYPE)-$(TAR_SUPPORTS_TRANSFORM)-$$($1_UNZIP_DEBUGINFO)-$$(words $$($1_BASE_DIRS)), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
105 |
tar.gz-true-false-1) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
106 |
# If only one BASE_DIR, but with a SUBDIR set, tar.gz can use the |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
107 |
# transform option to create bundle directly from the BASE_DIR. |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
108 |
$(CD) $$($1_BASE_DIRS) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
109 |
&& ( $(TAR) cf - $(TAR_CREATE_EXTRA_PARAM) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
110 |
-$(TAR_INCLUDE_PARAM) $$($1_$$($1_BASE_DIRS)_LIST_FILE) \ |
42849
fa0a0a987432
8171548: JDK bundles changes sym links incorrectly in the legal directory
erikj
parents:
42507
diff
changeset
|
111 |
$$(if $$($1_SUBDIR), --transform 's|^|$$($1_SUBDIR)/|S') \ |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
112 |
$(TAR_IGNORE_EXIT_VALUE) ) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
113 |
| $(GZIP) > $$@ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
114 |
else |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
115 |
# In all other cases, need to copy all files into a temporary location |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
116 |
# before creation bundle. |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
117 |
$(RM) -r $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
118 |
$(MKDIR) -p $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
119 |
$$(foreach d, $$($1_BASE_DIRS), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
120 |
( $(CD) $$d \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
121 |
&& $(TAR) cf - -$(TAR_INCLUDE_PARAM) $$($1_$$d_LIST_FILE) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
122 |
$(TAR_IGNORE_EXIT_VALUE) ) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
123 |
| ( $(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR) && $(TAR) xf - )$$(NEWLINE) ) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
124 |
# Unzip any zipped debuginfo files |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
125 |
ifeq ($$($1_UNZIP_DEBUGINFO), true) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
126 |
for f in `$(FIND) $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR) -name "*.diz"`; do \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
127 |
$(CD) $$$${f%/*} && $(UNZIP) -q $$$${f} && $(RM) $$$${f}; \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
128 |
done |
37972 | 129 |
endif |
130 |
ifeq ($$($1_TYPE), tar.gz) |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
131 |
$(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1 && \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
132 |
( $(TAR) cf - $(TAR_CREATE_EXTRA_PARAM) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
133 |
$$(if $$($1_SUBDIR), $$($1_SUBDIR), .) $(TAR_IGNORE_EXIT_VALUE) ) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
134 |
| $(GZIP) > $$@ |
37972 | 135 |
else ifeq ($$($1_TYPE), zip) |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
136 |
$(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1 && $(ZIPEXE) -qr $$@ . |
37972 | 137 |
endif |
138 |
endif |
|
139 |
||
140 |
$1 += $(BUNDLES_OUTPUTDIR)/$$($1_BUNDLE_NAME) |
|
141 |
||
142 |
endef |
|
143 |
||
144 |
################################################################################ |
|
145 |
||
146 |
# On Macosx, we bundle up the macosx specific images which already have the |
|
147 |
# correct base directories. |
|
53683 | 148 |
ifeq ($(call isTargetOs, macosx)+$(DEBUG_LEVEL), true+release) |
37972 | 149 |
JDK_IMAGE_DIR := $(JDK_MACOSX_BUNDLE_DIR) |
54348 | 150 |
JRE_IMAGE_DIR := $(JRE_MACOSX_BUNDLE_DIR) |
37972 | 151 |
JDK_IMAGE_HOMEDIR := $(JDK_MACOSX_CONTENTS_DIR)/Home |
54348 | 152 |
JRE_IMAGE_HOMEDIR := $(JRE_MACOSX_CONTENTS_DIR)/Home |
37972 | 153 |
JDK_BUNDLE_SUBDIR := |
54348 | 154 |
JRE_BUNDLE_SUBDIR := |
37972 | 155 |
else |
156 |
JDK_IMAGE_HOMEDIR := $(JDK_IMAGE_DIR) |
|
54348 | 157 |
JRE_IMAGE_HOMEDIR := $(JRE_IMAGE_DIR) |
37972 | 158 |
JDK_BUNDLE_SUBDIR := jdk-$(VERSION_NUMBER) |
54348 | 159 |
JRE_BUNDLE_SUBDIR := jre-$(VERSION_NUMBER) |
37972 | 160 |
ifneq ($(DEBUG_LEVEL), release) |
161 |
JDK_BUNDLE_SUBDIR := $(JDK_BUNDLE_SUBDIR)/$(DEBUG_LEVEL) |
|
54348 | 162 |
JRE_BUNDLE_SUBDIR := $(JRE_BUNDLE_SUBDIR)/$(DEBUG_LEVEL) |
37972 | 163 |
endif |
164 |
endif |
|
165 |
||
166 |
################################################################################ |
|
167 |
||
54348 | 168 |
ifneq ($(filter product-bundles legacy-bundles, $(MAKECMDGOALS)), ) |
37972 | 169 |
|
170 |
SYMBOLS_EXCLUDE_PATTERN := %.debuginfo %.diz %.pdb %.map |
|
171 |
||
54380 | 172 |
# There may be files with spaces in the names, so use ShellFindFiles |
173 |
# explicitly. |
|
174 |
ALL_JDK_FILES := $(call ShellFindFiles, $(JDK_IMAGE_DIR)) |
|
37972 | 175 |
|
176 |
# Create special filter rules when dealing with unzipped .dSYM directories on |
|
177 |
# macosx |
|
53683 | 178 |
ifeq ($(call isTargetOs, macosx), true) |
47933
19122c10fc52
8191205: Set native-debug-symbols default to "external"
ihse
parents:
47440
diff
changeset
|
179 |
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), false) |
37972 | 180 |
JDK_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \ |
181 |
$(call containing, .dSYM/, $(patsubst $(JDK_IMAGE_DIR)/%, %, $(ALL_JDK_FILES)))) |
|
182 |
endif |
|
183 |
endif |
|
184 |
||
185 |
JDK_BUNDLE_FILES := \ |
|
186 |
$(filter-out \ |
|
187 |
$(JDK_SYMBOLS_EXCLUDE_PATTERN) \ |
|
188 |
$(JDK_EXTRA_EXCLUDES) \ |
|
189 |
$(SYMBOLS_EXCLUDE_PATTERN) \ |
|
45097
607a19971bd9
8180129: Bundles.gmk:181: *** unterminated call to function 'filter-out': missing ')'. Stop.
tbell
parents:
45096
diff
changeset
|
190 |
$(JDK_IMAGE_HOMEDIR)/demo/% \ |
37972 | 191 |
, \ |
192 |
$(ALL_JDK_FILES) \ |
|
193 |
) |
|
194 |
JDK_SYMBOLS_BUNDLE_FILES := \ |
|
195 |
$(filter \ |
|
196 |
$(JDK_SYMBOLS_EXCLUDE_PATTERN) \ |
|
197 |
$(SYMBOLS_EXCLUDE_PATTERN) \ |
|
198 |
, \ |
|
39925
719d2be9b4de
8148548: [Linux/Solaris] debuginfo and fastdebuginfo bundle contains demo info
erikj
parents:
39111
diff
changeset
|
199 |
$(filter-out \ |
44724
8efb5c82a573
8173801: Modify makefiles to not build demos and samples bundles.
shurailine
parents:
43051
diff
changeset
|
200 |
$(JDK_IMAGE_HOMEDIR)/demo/% \ |
39925
719d2be9b4de
8148548: [Linux/Solaris] debuginfo and fastdebuginfo bundle contains demo info
erikj
parents:
39111
diff
changeset
|
201 |
, \ |
719d2be9b4de
8148548: [Linux/Solaris] debuginfo and fastdebuginfo bundle contains demo info
erikj
parents:
39111
diff
changeset
|
202 |
$(ALL_JDK_FILES) \ |
719d2be9b4de
8148548: [Linux/Solaris] debuginfo and fastdebuginfo bundle contains demo info
erikj
parents:
39111
diff
changeset
|
203 |
) \ |
37972 | 204 |
) \ |
54380 | 205 |
$(call FindFiles, $(SYMBOLS_IMAGE_DIR)) |
37972 | 206 |
|
47440
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
207 |
TEST_DEMOS_BUNDLE_FILES := $(filter $(JDK_IMAGE_HOMEDIR)/demo/%, $(ALL_JDK_FILES)) |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
208 |
|
54380 | 209 |
ALL_JRE_FILES := $(call ShellFindFiles, $(JRE_IMAGE_DIR)) |
54348 | 210 |
|
211 |
# Create special filter rules when dealing with unzipped .dSYM directories on |
|
212 |
# macosx |
|
213 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
214 |
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), false) |
|
215 |
JRE_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \ |
|
216 |
$(call containing, .dSYM/, $(patsubst $(JRE_IMAGE_DIR)/%, %, $(ALL_JRE_FILES)))) |
|
217 |
endif |
|
218 |
endif |
|
219 |
||
220 |
JRE_BUNDLE_FILES := $(filter-out \ |
|
221 |
$(JRE_SYMBOLS_EXCLUDE_PATTERN) \ |
|
222 |
$(SYMBOLS_EXCLUDE_PATTERN), \ |
|
223 |
$(ALL_JRE_FILES)) |
|
224 |
||
37972 | 225 |
$(eval $(call SetupBundleFile, BUILD_JDK_BUNDLE, \ |
226 |
BUNDLE_NAME := $(JDK_BUNDLE_NAME), \ |
|
227 |
FILES := $(JDK_BUNDLE_FILES), \ |
|
228 |
SPECIAL_INCLUDES := $(JDK_SPECIAL_INCLUDES), \ |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
229 |
BASE_DIRS := $(JDK_IMAGE_DIR), \ |
37972 | 230 |
SUBDIR := $(JDK_BUNDLE_SUBDIR), \ |
231 |
)) |
|
232 |
||
233 |
PRODUCT_TARGETS += $(BUILD_JDK_BUNDLE) |
|
234 |
||
54348 | 235 |
$(eval $(call SetupBundleFile, BUILD_JRE_BUNDLE, \ |
236 |
BUNDLE_NAME := $(JRE_BUNDLE_NAME), \ |
|
237 |
FILES := $(JRE_BUNDLE_FILES), \ |
|
238 |
BASE_DIRS := $(JRE_IMAGE_DIR), \ |
|
239 |
SUBDIR := $(JRE_BUNDLE_SUBDIR), \ |
|
240 |
)) |
|
241 |
||
242 |
LEGACY_TARGETS += $(BUILD_JRE_BUNDLE) |
|
243 |
||
37972 | 244 |
$(eval $(call SetupBundleFile, BUILD_JDK_SYMBOLS_BUNDLE, \ |
245 |
BUNDLE_NAME := $(JDK_SYMBOLS_BUNDLE_NAME), \ |
|
246 |
FILES := $(JDK_SYMBOLS_BUNDLE_FILES), \ |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
247 |
BASE_DIRS := $(JDK_IMAGE_DIR) $(wildcard $(SYMBOLS_IMAGE_DIR)), \ |
37972 | 248 |
SUBDIR := $(JDK_BUNDLE_SUBDIR), \ |
249 |
UNZIP_DEBUGINFO := true, \ |
|
250 |
)) |
|
251 |
||
252 |
PRODUCT_TARGETS += $(BUILD_JDK_SYMBOLS_BUNDLE) |
|
253 |
||
47440
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
254 |
# The demo bundle is only created to support client tests. Ideally it should |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
255 |
# be built with the main test bundle, but since the prerequisites match |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
256 |
# better with the product build, it makes more sense to keep it there for now. |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
257 |
$(eval $(call SetupBundleFile, BUILD_TEST_DEMOS_BUNDLE, \ |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
258 |
BUNDLE_NAME := $(TEST_DEMOS_BUNDLE_NAME), \ |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
259 |
FILES := $(TEST_DEMOS_BUNDLE_FILES), \ |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
260 |
BASE_DIRS := $(JDK_IMAGE_DIR), \ |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
261 |
SUBDIR := $(JDK_BUNDLE_SUBDIR), \ |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
262 |
)) |
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
263 |
|
963f70aa578d
8189682: JDK demos/tests should be in a separate bundle than hotspot ones
erikj
parents:
47334
diff
changeset
|
264 |
PRODUCT_TARGETS += $(BUILD_TEST_DEMOS_BUNDLE) |
37972 | 265 |
endif |
266 |
||
267 |
################################################################################ |
|
268 |
||
269 |
ifneq ($(filter test-bundles, $(MAKECMDGOALS)), ) |
|
54380 | 270 |
TEST_BUNDLE_FILES := $(call FindFiles, $(TEST_IMAGE_DIR)) |
37972 | 271 |
|
272 |
$(eval $(call SetupBundleFile, BUILD_TEST_BUNDLE, \ |
|
273 |
BUNDLE_NAME := $(TEST_BUNDLE_NAME), \ |
|
41875 | 274 |
FILES := $(TEST_BUNDLE_FILES), \ |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
275 |
BASE_DIRS := $(TEST_IMAGE_DIR), \ |
37972 | 276 |
)) |
277 |
||
278 |
TEST_TARGETS += $(BUILD_TEST_BUNDLE) |
|
279 |
endif |
|
280 |
||
281 |
################################################################################ |
|
282 |
||
283 |
ifneq ($(filter docs-bundles, $(MAKECMDGOALS)), ) |
|
54380 | 284 |
DOCS_BUNDLE_FILES := $(call FindFiles, $(DOCS_IMAGE_DIR)) |
37972 | 285 |
|
286 |
$(eval $(call SetupBundleFile, BUILD_DOCS_BUNDLE, \ |
|
287 |
BUNDLE_NAME := $(DOCS_BUNDLE_NAME), \ |
|
288 |
FILES := $(DOCS_BUNDLE_FILES), \ |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
289 |
BASE_DIRS := $(DOCS_IMAGE_DIR), \ |
37972 | 290 |
SUBDIR := docs, \ |
291 |
)) |
|
292 |
||
293 |
DOCS_TARGETS += $(BUILD_DOCS_BUNDLE) |
|
294 |
endif |
|
295 |
||
296 |
################################################################################ |
|
297 |
||
52774
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
298 |
ifneq ($(filter jcov-bundles, $(MAKECMDGOALS)), ) |
54380 | 299 |
JCOV_BUNDLE_FILES := $(call FindFiles, $(JCOV_IMAGE_DIR)) |
52774
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
300 |
|
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
301 |
$(eval $(call SetupBundleFile, BUILD_JCOV_BUNDLE, \ |
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
302 |
BUNDLE_NAME := $(JCOV_BUNDLE_NAME), \ |
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
303 |
FILES := $(JCOV_BUNDLE_FILES), \ |
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
304 |
BASE_DIRS := $(JCOV_IMAGE_DIR), \ |
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
305 |
SUBDIR := $(JDK_BUNDLE_SUBDIR), \ |
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
306 |
)) |
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
307 |
|
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
308 |
JCOV_TARGETS += $(BUILD_JCOV_BUNDLE) |
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
309 |
endif |
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
310 |
|
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
311 |
################################################################################ |
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
312 |
|
37972 | 313 |
# Hook to include the corresponding custom file, if present. |
47314 | 314 |
$(eval $(call IncludeCustomExtension, Bundles.gmk)) |
37972 | 315 |
|
316 |
################################################################################ |
|
317 |
||
318 |
product-bundles: $(PRODUCT_TARGETS) |
|
54348 | 319 |
legacy-bundles: $(LEGACY_TARGETS) |
37972 | 320 |
test-bundles: $(TEST_TARGETS) |
321 |
docs-bundles: $(DOCS_TARGETS) |
|
52774
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
322 |
jcov-bundles: $(JCOV_TARGETS) |
37972 | 323 |
|
52774
56ca125c973b
8214309: Enhance makefiles to allow generating JCov instrumented build
shurailine
parents:
52065
diff
changeset
|
324 |
.PHONY: all default product-bundles test-bundles docs-bundles jcov-bundles |