author | rfield |
Thu, 09 Mar 2017 08:45:21 -0800 | |
changeset 44188 | 3f2047e62102 |
parent 43051 | 6b8a8764b1fe |
child 44724 | 8efb5c82a573 |
permissions | -rw-r--r-- |
37972 | 1 |
# |
2 |
# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. |
|
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 := |
|
32 |
TEST_TARGETS := |
|
33 |
DOCS_TARGETS := |
|
34 |
||
35 |
# On Windows tar frequently complains that "file changed as we read it" for |
|
36 |
# some random source files. This seems to be cause by anti virus scanners and |
|
37 |
# is most likely safe to ignore. When it happens, tar returns '1'. |
|
38 |
ifeq ($(OPENJDK_BUILD_OS), windows) |
|
39 |
TAR_IGNORE_EXIT_VALUE := || test "$$$$?" = "1" |
|
40 |
endif |
|
41 |
||
42 |
# Hook to include the corresponding custom file, if present. |
|
43 |
$(eval $(call IncludeCustomExtension, , Bundles-pre.gmk)) |
|
44 |
################################################################################ |
|
45 |
# BUNDLE : Name of bundle to create |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
46 |
# 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
|
47 |
# SPECIAL_INCLUDES : List of directories inside BASE_DIRS to look for additional |
37972 | 48 |
# files in. These files will not get proper dependency handling. Use when |
49 |
# files or directories may contain spaces. |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
50 |
# BASE_DIRS : Base directories for the root dir in the bundle. |
37972 | 51 |
# SUBDIR : Optional name of root dir in bundle. |
52 |
SetupBundleFile = $(NamedParamsMacroTemplate) |
|
53 |
define SetupBundleFileBody |
|
54 |
||
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
55 |
$$(foreach d, $$($1_BASE_DIRS), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
56 |
$$(eval $1_$$d_RELATIVE_FILES := $$$$(patsubst $$d/%, %, \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
57 |
$$$$(filter $$d/%, $$$$($1_FILES)))) \ |
42507
a3499e58c108
8171167: Build fails in Mach 5 with "File name too long."
erikj
parents:
42506
diff
changeset
|
58 |
$$(eval $1_$$d_LIST_FILE := \ |
a3499e58c108
8171167: Build fails in Mach 5 with "File name too long."
erikj
parents:
42506
diff
changeset
|
59 |
$(SUPPORT_OUTPUTDIR)/bundles/_$1_$$$$(subst /,_,$$$$(patsubst $(TOPDIR)/%,%,$$d)_files)) \ |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
60 |
) |
37972 | 61 |
|
62 |
ifneq ($$(filter %.tar.gz, $$($1_BUNDLE_NAME)), ) |
|
63 |
$1_TYPE := tar.gz |
|
64 |
else ifneq ($$(filter %.zip, $$($1_BUNDLE_NAME)), ) |
|
65 |
$1_TYPE := zip |
|
66 |
else |
|
67 |
$$(error Unknown bundle type $$($1_BUNDLE_NAME)) |
|
68 |
endif |
|
69 |
||
70 |
$$(call SetIfEmpty, $1_UNZIP_DEBUGINFO, false) |
|
71 |
||
72 |
$(BUNDLES_OUTPUTDIR)/$$($1_BUNDLE_NAME): $$($1_FILES) |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
73 |
$$(foreach d, $$($1_BASE_DIRS), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
74 |
$$(eval $$(call ListPathsSafely, \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
75 |
$1_$$d_RELATIVE_FILES, $$($1_$$d_LIST_FILE))) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
76 |
) |
37972 | 77 |
$$(call MakeDir, $$(@D)) |
78 |
ifneq ($$($1_SPECIAL_INCLUDES), ) |
|
79 |
$$(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
|
80 |
$$(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
|
81 |
($(CD) $$d && $(FIND) $$i >> $$($1_$$d_LIST_FILE)) ; )) |
37972 | 82 |
endif |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
83 |
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
|
84 |
# 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
|
85 |
$$(foreach d, $$($1_BASE_DIRS), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
86 |
( $(CD) $$d \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
87 |
&& $(ZIPEXE) -qru $$@ . -i@$$($1_$$d_LIST_FILE) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
88 |
|| test "$$$$?" = "12" )$$(NEWLINE)) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
89 |
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
|
90 |
.-tar.gz-false-1) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
91 |
# 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
|
92 |
# directly from BASE_DIR. |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
93 |
$(CD) $$($1_BASE_DIRS) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
94 |
&& ( $(TAR) cf - $(TAR_CREATE_EXTRA_PARAM) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
95 |
-$(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
|
96 |
$(TAR_IGNORE_EXIT_VALUE) ) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
97 |
| $(GZIP) > $$@ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
98 |
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
|
99 |
tar.gz-true-false-1) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
100 |
# 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
|
101 |
# 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
|
102 |
$(CD) $$($1_BASE_DIRS) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
103 |
&& ( $(TAR) cf - $(TAR_CREATE_EXTRA_PARAM) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
104 |
-$(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
|
105 |
$$(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
|
106 |
$(TAR_IGNORE_EXIT_VALUE) ) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
107 |
| $(GZIP) > $$@ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
108 |
else |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
109 |
# 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
|
110 |
# before creation bundle. |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
111 |
$(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
|
112 |
$(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
|
113 |
$$(foreach d, $$($1_BASE_DIRS), \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
114 |
( $(CD) $$d \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
115 |
&& $(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
|
116 |
$(TAR_IGNORE_EXIT_VALUE) ) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
117 |
| ( $(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
|
118 |
# Unzip any zipped debuginfo files |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
119 |
ifeq ($$($1_UNZIP_DEBUGINFO), true) |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
120 |
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
|
121 |
$(CD) $$$${f%/*} && $(UNZIP) -q $$$${f} && $(RM) $$$${f}; \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
122 |
done |
37972 | 123 |
endif |
124 |
ifeq ($$($1_TYPE), tar.gz) |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
125 |
$(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1 && \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
126 |
( $(TAR) cf - $(TAR_CREATE_EXTRA_PARAM) \ |
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
127 |
$$(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
|
128 |
| $(GZIP) > $$@ |
37972 | 129 |
else ifeq ($$($1_TYPE), zip) |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
130 |
$(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1 && $(ZIPEXE) -qr $$@ . |
37972 | 131 |
endif |
132 |
endif |
|
133 |
||
134 |
$1 += $(BUNDLES_OUTPUTDIR)/$$($1_BUNDLE_NAME) |
|
135 |
||
136 |
endef |
|
137 |
||
138 |
################################################################################ |
|
139 |
||
140 |
# On Macosx, we bundle up the macosx specific images which already have the |
|
141 |
# correct base directories. |
|
37982
cd251f56161f
8157574: Mac fastdebug bundles have wrong directory layout
erikj
parents:
37972
diff
changeset
|
142 |
ifeq ($(OPENJDK_TARGET_OS)-$(DEBUG_LEVEL), macosx-release) |
37972 | 143 |
JDK_IMAGE_DIR := $(JDK_MACOSX_BUNDLE_DIR) |
144 |
JRE_IMAGE_DIR := $(JRE_MACOSX_BUNDLE_DIR) |
|
145 |
JDK_IMAGE_HOMEDIR := $(JDK_MACOSX_CONTENTS_DIR)/Home |
|
146 |
JRE_IMAGE_HOMEDIR := $(JRE_MACOSX_CONTENTS_DIR)/Home |
|
147 |
JDK_BUNDLE_SUBDIR := |
|
148 |
JRE_BUNDLE_SUBDIR := |
|
149 |
else |
|
150 |
JDK_IMAGE_HOMEDIR := $(JDK_IMAGE_DIR) |
|
151 |
JRE_IMAGE_HOMEDIR := $(JRE_IMAGE_DIR) |
|
152 |
JDK_BUNDLE_SUBDIR := jdk-$(VERSION_NUMBER) |
|
153 |
JRE_BUNDLE_SUBDIR := jre-$(VERSION_NUMBER) |
|
43043
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
154 |
JRE_COMPACT1_BUNDLE_SUBDIR := jre-$(VERSION_NUMBER)-compact1 |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
155 |
JRE_COMPACT2_BUNDLE_SUBDIR := jre-$(VERSION_NUMBER)-compact2 |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
156 |
JRE_COMPACT3_BUNDLE_SUBDIR := jre-$(VERSION_NUMBER)-compact3 |
37972 | 157 |
ifneq ($(DEBUG_LEVEL), release) |
158 |
JDK_BUNDLE_SUBDIR := $(JDK_BUNDLE_SUBDIR)/$(DEBUG_LEVEL) |
|
159 |
JRE_BUNDLE_SUBDIR := $(JRE_BUNDLE_SUBDIR)/$(DEBUG_LEVEL) |
|
160 |
endif |
|
161 |
endif |
|
162 |
||
163 |
################################################################################ |
|
164 |
||
165 |
ifneq ($(filter product-bundles, $(MAKECMDGOALS)), ) |
|
166 |
$(eval $(call FillCacheFind, $(IMAGES_OUTPUTDIR))) |
|
167 |
||
168 |
SYMBOLS_EXCLUDE_PATTERN := %.debuginfo %.diz %.pdb %.map |
|
169 |
||
170 |
ALL_JDK_FILES := $(call CacheFind, $(JDK_IMAGE_DIR)) |
|
171 |
||
172 |
# Create special filter rules when dealing with unzipped .dSYM directories on |
|
173 |
# macosx |
|
174 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
175 |
ifeq ($(ZIP_DEBUGINFO_FILES), false) |
|
176 |
JDK_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \ |
|
177 |
$(call containing, .dSYM/, $(patsubst $(JDK_IMAGE_DIR)/%, %, $(ALL_JDK_FILES)))) |
|
178 |
endif |
|
179 |
endif |
|
180 |
||
181 |
JDK_BUNDLE_FILES := \ |
|
182 |
$(filter-out \ |
|
183 |
$(JDK_SYMBOLS_EXCLUDE_PATTERN) \ |
|
184 |
$(JDK_EXTRA_EXCLUDES) \ |
|
185 |
$(SYMBOLS_EXCLUDE_PATTERN) \ |
|
186 |
$(JDK_IMAGE_HOMEDIR)/demo/% $(JDK_IMAGE_HOMEDIR)/sample/% \ |
|
187 |
, \ |
|
188 |
$(ALL_JDK_FILES) \ |
|
189 |
) |
|
190 |
DEMOS_BUNDLE_FILES := \ |
|
191 |
$(filter-out \ |
|
192 |
$(JDK_SYMBOLS_EXCLUDE_PATTERN) \ |
|
193 |
$(SYMBOLS_EXCLUDE_PATTERN) \ |
|
194 |
, \ |
|
195 |
$(filter \ |
|
196 |
$(JDK_IMAGE_HOMEDIR)/demo/% $(JDK_IMAGE_HOMEDIR)/sample/% \ |
|
197 |
$(JDK_IMAGE_HOMEDIR)/release \ |
|
198 |
, \ |
|
199 |
$(ALL_JDK_FILES) \ |
|
200 |
) \ |
|
201 |
) |
|
202 |
JDK_SYMBOLS_BUNDLE_FILES := \ |
|
203 |
$(filter \ |
|
204 |
$(JDK_SYMBOLS_EXCLUDE_PATTERN) \ |
|
205 |
$(SYMBOLS_EXCLUDE_PATTERN) \ |
|
206 |
, \ |
|
39925
719d2be9b4de
8148548: [Linux/Solaris] debuginfo and fastdebuginfo bundle contains demo info
erikj
parents:
39111
diff
changeset
|
207 |
$(filter-out \ |
719d2be9b4de
8148548: [Linux/Solaris] debuginfo and fastdebuginfo bundle contains demo info
erikj
parents:
39111
diff
changeset
|
208 |
$(JDK_IMAGE_HOMEDIR)/demo/% $(JDK_IMAGE_HOMEDIR)/sample/% \ |
719d2be9b4de
8148548: [Linux/Solaris] debuginfo and fastdebuginfo bundle contains demo info
erikj
parents:
39111
diff
changeset
|
209 |
, \ |
719d2be9b4de
8148548: [Linux/Solaris] debuginfo and fastdebuginfo bundle contains demo info
erikj
parents:
39111
diff
changeset
|
210 |
$(ALL_JDK_FILES) \ |
719d2be9b4de
8148548: [Linux/Solaris] debuginfo and fastdebuginfo bundle contains demo info
erikj
parents:
39111
diff
changeset
|
211 |
) \ |
37972 | 212 |
) \ |
213 |
$(call CacheFind, $(SYMBOLS_IMAGE_DIR)) |
|
214 |
||
215 |
ALL_JRE_FILES := $(call CacheFind, $(JRE_IMAGE_DIR)) |
|
216 |
||
217 |
# Create special filter rules when dealing with unzipped .dSYM directories on |
|
218 |
# macosx |
|
219 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
220 |
ifeq ($(ZIP_DEBUGINFO_FILES), false) |
|
221 |
JRE_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \ |
|
222 |
$(call containing, .dSYM/, $(patsubst $(JRE_IMAGE_DIR)/%, %, $(ALL_JRE_FILES)))) |
|
223 |
endif |
|
224 |
endif |
|
225 |
||
226 |
JRE_BUNDLE_FILES := $(filter-out \ |
|
227 |
$(JRE_SYMBOLS_EXCLUDE_PATTERN) \ |
|
228 |
$(SYMBOLS_EXCLUDE_PATTERN), \ |
|
229 |
$(ALL_JRE_FILES)) |
|
230 |
JRE_SYMBOLS_BUNDLE_FILES := $(filter \ |
|
231 |
$(JRE_SYMBOLS_EXCLUDE_PATTERN) \ |
|
232 |
$(SYMBOLS_EXCLUDE_PATTERN), \ |
|
233 |
$(ALL_JRE_FILES)) |
|
234 |
||
235 |
$(eval $(call SetupBundleFile, BUILD_JDK_BUNDLE, \ |
|
236 |
BUNDLE_NAME := $(JDK_BUNDLE_NAME), \ |
|
237 |
FILES := $(JDK_BUNDLE_FILES), \ |
|
238 |
SPECIAL_INCLUDES := $(JDK_SPECIAL_INCLUDES), \ |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
239 |
BASE_DIRS := $(JDK_IMAGE_DIR), \ |
37972 | 240 |
SUBDIR := $(JDK_BUNDLE_SUBDIR), \ |
241 |
)) |
|
242 |
||
243 |
PRODUCT_TARGETS += $(BUILD_JDK_BUNDLE) |
|
244 |
||
245 |
$(eval $(call SetupBundleFile, BUILD_JRE_BUNDLE, \ |
|
246 |
BUNDLE_NAME := $(JRE_BUNDLE_NAME), \ |
|
247 |
FILES := $(JRE_BUNDLE_FILES), \ |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
248 |
BASE_DIRS := $(JRE_IMAGE_DIR), \ |
37972 | 249 |
SUBDIR := $(JRE_BUNDLE_SUBDIR), \ |
250 |
)) |
|
251 |
||
252 |
PRODUCT_TARGETS += $(BUILD_JRE_BUNDLE) |
|
253 |
||
254 |
$(eval $(call SetupBundleFile, BUILD_JDK_SYMBOLS_BUNDLE, \ |
|
255 |
BUNDLE_NAME := $(JDK_SYMBOLS_BUNDLE_NAME), \ |
|
256 |
FILES := $(JDK_SYMBOLS_BUNDLE_FILES), \ |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
257 |
BASE_DIRS := $(JDK_IMAGE_DIR) $(wildcard $(SYMBOLS_IMAGE_DIR)), \ |
37972 | 258 |
SUBDIR := $(JDK_BUNDLE_SUBDIR), \ |
259 |
UNZIP_DEBUGINFO := true, \ |
|
260 |
)) |
|
261 |
||
262 |
PRODUCT_TARGETS += $(BUILD_JDK_SYMBOLS_BUNDLE) |
|
263 |
||
264 |
$(eval $(call SetupBundleFile, BUILD_JRE_SYMBOLS_BUNDLE, \ |
|
265 |
BUNDLE_NAME := $(JRE_SYMBOLS_BUNDLE_NAME), \ |
|
266 |
FILES := $(JRE_SYMBOLS_BUNDLE_FILES), \ |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
267 |
BASE_DIRS := $(JRE_IMAGE_DIR), \ |
37972 | 268 |
SUBDIR := $(JRE_BUNDLE_SUBDIR), \ |
269 |
UNZIP_DEBUGINFO := true, \ |
|
270 |
)) |
|
271 |
||
272 |
PRODUCT_TARGETS += $(BUILD_JRE_SYMBOLS_BUNDLE) |
|
273 |
||
274 |
$(eval $(call SetupBundleFile, BUILD_DEMOS_BUNDLE, \ |
|
275 |
BUNDLE_NAME := $(DEMOS_BUNDLE_NAME), \ |
|
41875 | 276 |
FILES := $(DEMOS_BUNDLE_FILES), \ |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
277 |
BASE_DIRS := $(JDK_IMAGE_DIR), \ |
37972 | 278 |
SUBDIR := $(JDK_BUNDLE_SUBDIR), \ |
279 |
)) |
|
280 |
||
281 |
PRODUCT_TARGETS += $(BUILD_DEMOS_BUNDLE) |
|
282 |
endif |
|
283 |
||
284 |
################################################################################ |
|
285 |
||
43043
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
286 |
ifneq ($(filter profiles-bundles, $(MAKECMDGOALS)), ) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
287 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
288 |
$(error Creating compact profiles bundles on macosx is unsupported) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
289 |
endif |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
290 |
|
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
291 |
define GenerateCompactProfilesBundles |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
292 |
ALL_JRE_COMPACT$1_FILES := $$(call CacheFind, $$(JRE_COMPACT$1_IMAGE_DIR)) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
293 |
|
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
294 |
JRE_COMPACT$1_BUNDLE_FILES := $$(filter-out \ |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
295 |
$$(SYMBOLS_EXCLUDE_PATTERN), \ |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
296 |
$$(ALL_JRE_COMPACT$1_FILES)) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
297 |
|
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
298 |
$$(eval $$(call SetupBundleFile, BUILD_JRE_COMPACT$1_BUNDLE, \ |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
299 |
BUNDLE_NAME := $$(JRE_COMPACT$1_BUNDLE_NAME), \ |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
300 |
FILES := $$(JRE_COMPACT$1_BUNDLE_FILES), \ |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
301 |
BASE_DIRS := $$(JRE_COMPACT$1_IMAGE_DIR), \ |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
302 |
SUBDIR := $$(JRE_COMPACT$1_BUNDLE_SUBDIR), \ |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
303 |
)) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
304 |
|
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
305 |
PROFILES_TARGETS += $$(BUILD_JRE_COMPACT$1_BUNDLE) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
306 |
endef |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
307 |
|
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
308 |
$(eval $(call GenerateCompactProfilesBundles,1)) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
309 |
$(eval $(call GenerateCompactProfilesBundles,2)) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
310 |
$(eval $(call GenerateCompactProfilesBundles,3)) |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
311 |
endif |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
312 |
|
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
313 |
################################################################################ |
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
314 |
|
37972 | 315 |
ifneq ($(filter test-bundles, $(MAKECMDGOALS)), ) |
316 |
TEST_BUNDLE_FILES := $(call CacheFind, $(TEST_IMAGE_DIR)) |
|
317 |
||
318 |
$(eval $(call SetupBundleFile, BUILD_TEST_BUNDLE, \ |
|
319 |
BUNDLE_NAME := $(TEST_BUNDLE_NAME), \ |
|
41875 | 320 |
FILES := $(TEST_BUNDLE_FILES), \ |
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
321 |
BASE_DIRS := $(TEST_IMAGE_DIR), \ |
37972 | 322 |
)) |
323 |
||
324 |
TEST_TARGETS += $(BUILD_TEST_BUNDLE) |
|
325 |
endif |
|
326 |
||
327 |
################################################################################ |
|
328 |
||
329 |
ifneq ($(filter docs-bundles, $(MAKECMDGOALS)), ) |
|
330 |
DOCS_BUNDLE_FILES := $(call CacheFind, $(DOCS_IMAGE_DIR)) |
|
331 |
||
332 |
$(eval $(call SetupBundleFile, BUILD_DOCS_BUNDLE, \ |
|
333 |
BUNDLE_NAME := $(DOCS_BUNDLE_NAME), \ |
|
334 |
FILES := $(DOCS_BUNDLE_FILES), \ |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42136
diff
changeset
|
335 |
BASE_DIRS := $(DOCS_IMAGE_DIR), \ |
37972 | 336 |
SUBDIR := docs, \ |
337 |
)) |
|
338 |
||
339 |
DOCS_TARGETS += $(BUILD_DOCS_BUNDLE) |
|
340 |
endif |
|
341 |
||
342 |
################################################################################ |
|
343 |
||
344 |
# Hook to include the corresponding custom file, if present. |
|
345 |
$(eval $(call IncludeCustomExtension, , Bundles.gmk)) |
|
346 |
||
347 |
################################################################################ |
|
348 |
||
349 |
product-bundles: $(PRODUCT_TARGETS) |
|
43043
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
350 |
profiles-bundles: $(PROFILES_TARGETS) |
37972 | 351 |
test-bundles: $(TEST_TARGETS) |
352 |
docs-bundles: $(DOCS_TARGETS) |
|
353 |
||
43043
bf14e07c9075
8172241: Cleanup mistakes in jib publish support change
erikj
parents:
42849
diff
changeset
|
354 |
.PHONY: all default product-bundles profiles-bundles test-bundles docs-bundles |