author | mkos |
Fri, 21 Feb 2014 17:37:39 +0100 | |
changeset 23962 | 99b559663ecb |
parent 23507 | b4339e4c239b |
child 26311 | 7e8c3ace277d |
permissions | -rw-r--r-- |
1 | 1 |
# |
15432 | 2 |
# Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 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. |
|
8 |
# |
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
# accompanied this code). |
|
14 |
# |
|
15 |
# You should have received a copy of the GNU General Public License version |
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4733
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4733
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4733
diff
changeset
|
21 |
# questions. |
17006 | 22 |
# |
1 | 23 |
# |
24 |
||
25 |
# Top level gnumake file for hotspot builds |
|
26 |
# |
|
27 |
# Default is to build the both product images and construct an export dir. |
|
28 |
# The default export directory name is `pwd`/export-$(PLATFORM). |
|
29 |
# |
|
30 |
# Use: 'gnumake help' for more information. |
|
31 |
# |
|
32 |
# This makefile uses the default settings for where to find compilers and |
|
33 |
# tools, and obeys the ALT_* variable settings used by the other JDK |
|
34 |
# workspaces. |
|
35 |
# |
|
36 |
||
37 |
# Expected/optional make variables defined on make command line: |
|
38 |
# LP64=1 or ARCH_DATA_MODEL=64 for 64bit build |
|
39 |
# |
|
40 |
# Expected/optional make variables or environment variables: |
|
41 |
# ALT_SLASH_JAVA Location of /java or J: |
|
42 |
# ALT_BOOTDIR Previous JDK home directory for javac compiler |
|
43 |
# ALT_OUTPUTDIR Output directory to use for hotspot build |
|
44 |
# ALT_EXPORT_PATH Directory to export hotspot build to |
|
45 |
# ALT_JDK_IMPORT_PATH Current JDK build (only for create_jdk rules) |
|
8307
edbc4c94fd00
7018429: JPRT: Update Makefile to use ALT_JDK_TARGET_IMPORT_PATH for copying JDK
dholmes
parents:
8114
diff
changeset
|
46 |
# ALT_JDK_TARGET_IMPORT_PATH Current JDK build when cross-compiling |
1 | 47 |
# ALT_BUILD_WIN_SA Building SA on Windows is disabled by default. |
48 |
# Set ALT_BUILD_WIN_SA=1 to enable building SA on |
|
49 |
# Windows. |
|
50 |
# Version strings and numbers: |
|
51 |
# JDK_VERSION Current JDK version (e.g. 1.6.0) |
|
52 |
# PREVIOUS_JDK_VERSION Previous (bootdir) JDK version (e.g. 1.5.0) |
|
53 |
# FULL_VERSION Full version string to use (e.g. "1.6.0-ea-b42") |
|
54 |
# |
|
55 |
# Version strings and numbers especially needed on Windows: |
|
56 |
# COOKED_JDK_UPDATE_VERSION Just the update release number (e.g. 02) |
|
57 |
# COOKED_BUILD_NUMBER Just the build number (e.g. 42) |
|
58 |
# JDK_MKTG_VERSION Marketing JDK version (e.g. 6.0) |
|
59 |
# JDK_MAJOR_VERSION Major number for version (e.g. 1) always 1? |
|
60 |
# JDK_MINOR_VERSION Minor number for version (e.g. 6) |
|
61 |
# JDK_MICRO_VERSION Micro number for version (e.g. 0) |
|
62 |
# |
|
63 |
||
64 |
# Default is build both product fastdebug and create export area |
|
65 |
||
66 |
# Allow to build HotSpot in local directory from sources specified by GAMMADIR. |
|
67 |
# After make/defs.make GAMMADIR is defined. |
|
68 |
ifdef GAMMADIR |
|
69 |
ifndef ALT_OUTPUTDIR |
|
70 |
ALT_OUTPUTDIR := $(shell pwd) |
|
71 |
endif |
|
72 |
include $(GAMMADIR)/make/defs.make |
|
73 |
else |
|
74 |
include defs.make |
|
75 |
endif |
|
76 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
77 |
include $(GAMMADIR)/make/altsrc.make |
1 | 78 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
79 |
-include $(HS_ALT_MAKE)/Makefile.make |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
80 |
|
1 | 81 |
ifneq ($(ALT_OUTPUTDIR),) |
82 |
ALT_OUT=ALT_OUTPUTDIR=$(ALT_OUTPUTDIR) |
|
83 |
else |
|
84 |
ALT_OUT= |
|
85 |
endif |
|
86 |
||
87 |
# Typical C1/C2 targets made available with this Makefile |
|
17006 | 88 |
C1_VM_TARGETS=product1 fastdebug1 optimized1 debug1 |
89 |
C2_VM_TARGETS=product fastdebug optimized debug |
|
22805 | 90 |
CORE_VM_TARGETS=productcore fastdebugcore optimizedcore debugcore |
17006 | 91 |
ZERO_VM_TARGETS=productzero fastdebugzero optimizedzero debugzero |
92 |
SHARK_VM_TARGETS=productshark fastdebugshark optimizedshark debugshark |
|
93 |
MINIMAL1_VM_TARGETS=productminimal1 fastdebugminimal1 debugminimal1 |
|
1 | 94 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
95 |
COMMON_VM_PRODUCT_TARGETS=product product1 docs export_product |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
96 |
COMMON_VM_FASTDEBUG_TARGETS=fastdebug fastdebug1 docs export_fastdebug |
17006 | 97 |
COMMON_VM_DEBUG_TARGETS=debug debug1 docs export_debug |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
98 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
99 |
# JDK directory list |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
100 |
JDK_DIRS=bin include jre lib demo |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
101 |
|
1 | 102 |
all: all_product all_fastdebug |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
103 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
104 |
ifeq ($(JVM_VARIANT_MINIMAL1),true) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
105 |
all_product: productminimal1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
106 |
all_fastdebug: fastdebugminimal1 |
17006 | 107 |
all_debug: debugminimal1 |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
108 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
109 |
|
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
110 |
ifdef BUILD_CLIENT_ONLY |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
111 |
all_product: product1 docs export_product |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
112 |
all_fastdebug: fastdebug1 docs export_fastdebug |
17006 | 113 |
all_debug: debug1 docs export_debug |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
114 |
else |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
115 |
ifeq ($(MACOSX_UNIVERSAL),true) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
116 |
all_product: universal_product |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
117 |
all_fastdebug: universal_fastdebug |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
118 |
all_debug: universal_debug |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
119 |
else |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
120 |
all_product: $(COMMON_VM_PRODUCT_TARGETS) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
121 |
all_fastdebug: $(COMMON_VM_FASTDEBUG_TARGETS) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
122 |
all_debug: $(COMMON_VM_DEBUG_TARGETS) |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
123 |
endif |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
124 |
endif |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
125 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
126 |
all_optimized: optimized optimized1 docs export_optimized |
1 | 127 |
|
4013 | 128 |
allzero: all_productzero all_fastdebugzero |
129 |
all_productzero: productzero docs export_product |
|
130 |
all_fastdebugzero: fastdebugzero docs export_fastdebug |
|
17006 | 131 |
all_debugzero: debugzero docs export_debug |
4013 | 132 |
all_optimizedzero: optimizedzero docs export_optimized |
133 |
||
6187 | 134 |
allshark: all_productshark all_fastdebugshark |
135 |
all_productshark: productshark docs export_product |
|
136 |
all_fastdebugshark: fastdebugshark docs export_fastdebug |
|
17006 | 137 |
all_debugshark: debugshark docs export_debug |
6187 | 138 |
all_optimizedshark: optimizedshark docs export_optimized |
139 |
||
22805 | 140 |
allcore: all_productcore all_fastdebugcore |
141 |
all_productcore: productcore docs export_product |
|
142 |
all_fastdebugcore: fastdebugcore docs export_fastdebug |
|
143 |
all_debugcore: debugcore docs export_debug |
|
144 |
all_optimizedcore: optimizedcore docs export_optimized |
|
145 |
||
1 | 146 |
# Do everything |
147 |
world: all create_jdk |
|
148 |
||
149 |
# Build or export docs |
|
150 |
docs: |
|
151 |
ifeq ($(OSNAME),windows) |
|
152 |
@$(ECHO) "No docs ($(VM_TARGET)) for windows" |
|
153 |
else |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
154 |
# We specify 'BUILD_FLAVOR=product' so that the proper |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
155 |
# ENABLE_FULL_DEBUG_SYMBOLS value is used. |
1 | 156 |
$(CD) $(OUTPUTDIR); \ |
157 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
158 |
$(MAKE_ARGS) BUILD_FLAVOR=product docs |
1 | 159 |
endif |
160 |
||
17382 | 161 |
# Output directories |
162 |
C1_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_compiler1 |
|
163 |
C2_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_compiler2 |
|
22805 | 164 |
CORE_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_core |
17382 | 165 |
MINIMAL1_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_minimal1 |
166 |
ZERO_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_zero |
|
167 |
SHARK_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_shark |
|
168 |
||
1 | 169 |
# Build variation of hotspot |
170 |
$(C1_VM_TARGETS): |
|
171 |
$(CD) $(GAMMADIR)/make; \ |
|
17382 | 172 |
$(MAKE) BUILD_DIR=$(C1_DIR) BUILD_FLAVOR=$(@:%1=%) VM_TARGET=$@ generic_build1 $(ALT_OUT) |
1 | 173 |
|
174 |
$(C2_VM_TARGETS): |
|
175 |
$(CD) $(GAMMADIR)/make; \ |
|
17382 | 176 |
$(MAKE) BUILD_DIR=$(C2_DIR) BUILD_FLAVOR=$@ VM_TARGET=$@ generic_build2 $(ALT_OUT) |
1 | 177 |
|
22805 | 178 |
$(CORE_VM_TARGETS): |
179 |
$(CD) $(GAMMADIR)/make; \ |
|
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
180 |
$(MAKE) BUILD_DIR=$(CORE_DIR) BUILD_FLAVOR=$(@:%core=%) VM_TARGET=$@ generic_buildcore $(ALT_OUT) |
22805 | 181 |
|
4013 | 182 |
$(ZERO_VM_TARGETS): |
183 |
$(CD) $(GAMMADIR)/make; \ |
|
17382 | 184 |
$(MAKE) BUILD_DIR=$(ZERO_DIR) BUILD_FLAVOR=$(@:%zero=%) VM_TARGET=$@ generic_buildzero $(ALT_OUT) |
4013 | 185 |
|
6187 | 186 |
$(SHARK_VM_TARGETS): |
187 |
$(CD) $(GAMMADIR)/make; \ |
|
17382 | 188 |
$(MAKE) BUILD_DIR=$(SHARK_DIR) BUILD_FLAVOR=$(@:%shark=%) VM_TARGET=$@ generic_buildshark $(ALT_OUT) |
6187 | 189 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
190 |
$(MINIMAL1_VM_TARGETS): |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
191 |
$(CD) $(GAMMADIR)/make; \ |
17382 | 192 |
$(MAKE) BUILD_DIR=$(MINIMAL1_DIR) BUILD_FLAVOR=$(@:%minimal1=%) VM_TARGET=$@ generic_buildminimal1 $(ALT_OUT) |
193 |
||
194 |
# Install hotspot script in build directory |
|
195 |
HOTSPOT_SCRIPT=$(BUILD_DIR)/$(BUILD_FLAVOR)/hotspot |
|
196 |
$(HOTSPOT_SCRIPT): $(GAMMADIR)/make/hotspot.script |
|
197 |
$(QUIETLY) $(MKDIR) -p $(BUILD_DIR)/$(BUILD_FLAVOR) |
|
198 |
$(QUIETLY) cat $< | sed -e 's|@@LIBARCH@@|$(LIBARCH)|g' | sed -e 's|@@JDK_IMPORT_PATH@@|$(JDK_IMPORT_PATH)|g' > $@ |
|
199 |
$(QUIETLY) chmod +x $@ |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
200 |
|
1 | 201 |
# Build compiler1 (client) rule, different for platforms |
17382 | 202 |
generic_build1: $(HOTSPOT_SCRIPT) |
1 | 203 |
$(MKDIR) -p $(OUTPUTDIR) |
204 |
ifeq ($(OSNAME),windows) |
|
205 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
206 |
$(CD) $(OUTPUTDIR); \ |
|
207 |
$(NMAKE) -f $(ABS_OS_MAKEFILE) \ |
|
208 |
Variant=compiler1 \ |
|
209 |
WorkSpace=$(ABS_GAMMADIR) \ |
|
210 |
BootStrapDir=$(ABS_BOOTDIR) \ |
|
211 |
BuildUser=$(USERNAME) \ |
|
212 |
$(MAKE_ARGS) $(VM_TARGET:%1=%) |
|
213 |
else |
|
214 |
@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
|
215 |
endif |
|
216 |
else |
|
217 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
218 |
$(CD) $(OUTPUTDIR); \ |
|
219 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
220 |
$(MAKE_ARGS) $(VM_TARGET) |
|
221 |
else |
|
222 |
@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
|
223 |
endif |
|
224 |
endif |
|
225 |
||
226 |
# Build compiler2 (server) rule, different for platforms |
|
17382 | 227 |
generic_build2: $(HOTSPOT_SCRIPT) |
1 | 228 |
$(MKDIR) -p $(OUTPUTDIR) |
229 |
ifeq ($(OSNAME),windows) |
|
230 |
$(CD) $(OUTPUTDIR); \ |
|
231 |
$(NMAKE) -f $(ABS_OS_MAKEFILE) \ |
|
232 |
Variant=compiler2 \ |
|
233 |
WorkSpace=$(ABS_GAMMADIR) \ |
|
234 |
BootStrapDir=$(ABS_BOOTDIR) \ |
|
235 |
BuildUser=$(USERNAME) \ |
|
236 |
$(MAKE_ARGS) $(VM_TARGET) |
|
237 |
else |
|
238 |
$(CD) $(OUTPUTDIR); \ |
|
239 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
240 |
$(MAKE_ARGS) $(VM_TARGET) |
|
241 |
endif |
|
242 |
||
22805 | 243 |
generic_buildcore: $(HOTSPOT_SCRIPT) |
244 |
ifeq ($(HS_ARCH),ppc) |
|
245 |
ifeq ($(ARCH_DATA_MODEL),64) |
|
246 |
$(MKDIR) -p $(OUTPUTDIR) |
|
247 |
$(CD) $(OUTPUTDIR); \ |
|
248 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
249 |
$(MAKE_ARGS) $(VM_TARGET) |
|
250 |
else |
|
251 |
@$(ECHO) "No ($(VM_TARGET)) for ppc ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
|
252 |
endif |
|
253 |
else |
|
254 |
@$(ECHO) "No ($(VM_TARGET)) for $(HS_ARCH)" |
|
255 |
endif |
|
256 |
||
17382 | 257 |
generic_buildzero: $(HOTSPOT_SCRIPT) |
4013 | 258 |
$(MKDIR) -p $(OUTPUTDIR) |
259 |
$(CD) $(OUTPUTDIR); \ |
|
260 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
261 |
$(MAKE_ARGS) $(VM_TARGET) |
|
262 |
||
17382 | 263 |
generic_buildshark: $(HOTSPOT_SCRIPT) |
6187 | 264 |
$(MKDIR) -p $(OUTPUTDIR) |
265 |
$(CD) $(OUTPUTDIR); \ |
|
266 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
17006 | 267 |
$(MAKE_ARGS) $(VM_TARGET) |
6187 | 268 |
|
17382 | 269 |
generic_buildminimal1: $(HOTSPOT_SCRIPT) |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
270 |
ifeq ($(JVM_VARIANT_MINIMAL1),true) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
271 |
$(MKDIR) -p $(OUTPUTDIR) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
272 |
ifeq ($(ARCH_DATA_MODEL), 32) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
273 |
ifeq ($(OSNAME),windows) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
274 |
$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" ; |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
275 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
276 |
ifeq ($(OSNAME),solaris) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
277 |
$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" ; |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
278 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
279 |
$(CD) $(OUTPUTDIR); \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
280 |
$(MAKE) -f $(ABS_OS_MAKEFILE) $(MAKE_ARGS) $(VM_TARGET) ; |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
281 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
282 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
283 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
284 |
@$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
285 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
286 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
287 |
@$(ECHO) "Error: trying to build a minimal target but JVM_VARIANT_MINIMAL1 is not true." |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
288 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
289 |
|
23507
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
290 |
remove_old_debuginfo: |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
291 |
ifeq ($(JVM_VARIANT_CLIENT), true) |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
292 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
293 |
ifeq ($(OSNAME), windows) |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
294 |
$(RM) -f $(EXPORT_CLIENT_DIR)/jvm.map $(EXPORT_CLIENT_DIR)/jvm.pdb |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
295 |
else |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
296 |
$(RM) -f $(EXPORT_CLIENT_DIR)/libjvm.debuginfo |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
297 |
endif |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
298 |
else |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
299 |
$(RM) -f $(EXPORT_CLIENT_DIR)/libjvm.diz |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
300 |
endif |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
301 |
endif |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
302 |
ifeq ($(findstring true, $(JVM_VARIANT_SERVER) $(JVM_VARIANT_ZERO) $(JVM_VARIANT_ZEROSHARK)), true) |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
303 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
304 |
ifeq ($(OSNAME), windows) |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
305 |
$(RM) -f $(EXPORT_SERVER_DIR)/jvm.map $(EXPORT_SERVER_DIR)/jvm.pdb |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
306 |
else |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
307 |
ifeq ($(OS_VENDOR), Darwin) |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
308 |
$(RM) -rf $(EXPORT_SERVER_DIR)/libjvm.dylib.dSYM |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
309 |
else |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
310 |
$(RM) -f $(EXPORT_SERVER_DIR)/libjvm.debuginfo |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
311 |
endif |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
312 |
endif |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
313 |
else |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
314 |
$(RM) -f $(EXPORT_SERVER_DIR)/libjvm.diz |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
315 |
endif |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
316 |
endif |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
317 |
ifeq ($(JVM_VARIANT_MINIMAL1),true) |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
318 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
319 |
$(RM) -f $(EXPORT_MINIMAL_DIR)/libjvm.debuginfo |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
320 |
else |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
321 |
$(RM) -f $(EXPORT_MINIMAL_DIR)/libjvm.diz |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
322 |
endif |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
323 |
endif |
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
324 |
|
1 | 325 |
# Export file rule |
23507
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
326 |
generic_export: $(EXPORT_LIST) remove_old_debuginfo |
17382 | 327 |
|
1 | 328 |
export_product: |
17382 | 329 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) generic_export |
1 | 330 |
export_fastdebug: |
17382 | 331 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) EXPORT_SUBDIR=/$(@:export_%=%) generic_export |
1 | 332 |
export_debug: |
17382 | 333 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) EXPORT_SUBDIR=/$(@:export_%=%) generic_export |
1 | 334 |
export_optimized: |
17382 | 335 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) EXPORT_SUBDIR=/$(@:export_%=%) generic_export |
336 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
337 |
export_product_jdk:: |
17382 | 338 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
339 |
export_optimized_jdk:: |
17382 | 340 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
341 |
export_fastdebug_jdk:: |
17382 | 342 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
343 |
export_debug_jdk:: |
17382 | 344 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) generic_export |
1 | 345 |
|
346 |
# Export file copy rules |
|
347 |
XUSAGE=$(HS_SRC_DIR)/share/vm/Xusage.txt |
|
17382 | 348 |
DOCS_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_docs |
349 |
C1_BUILD_DIR =$(C1_DIR)/$(BUILD_FLAVOR) |
|
350 |
C2_BUILD_DIR =$(C2_DIR)/$(BUILD_FLAVOR) |
|
22805 | 351 |
CORE_BUILD_DIR =$(CORE_DIR)/$(BUILD_FLAVOR) |
17382 | 352 |
MINIMAL1_BUILD_DIR=$(MINIMAL1_DIR)/$(BUILD_FLAVOR) |
353 |
ZERO_BUILD_DIR =$(ZERO_DIR)/$(BUILD_FLAVOR) |
|
354 |
SHARK_BUILD_DIR =$(SHARK_DIR)/$(BUILD_FLAVOR) |
|
1 | 355 |
|
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
356 |
# Server (C2) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
357 |
ifeq ($(JVM_VARIANT_SERVER), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
358 |
# Common |
17382 | 359 |
$(EXPORT_SERVER_DIR)/%.diz: $(C2_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
360 |
$(install-file) |
17382 | 361 |
$(EXPORT_LIB_DIR)/%.jar: $(C2_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
362 |
$(install-file) |
17382 | 363 |
$(EXPORT_INCLUDE_DIR)/%: $(C2_BUILD_DIR)/../generated/jvmtifiles/% |
1 | 364 |
$(install-file) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
365 |
# Windows |
17382 | 366 |
$(EXPORT_SERVER_DIR)/%.dll: $(C2_BUILD_DIR)/%.dll |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
367 |
$(install-file) |
17382 | 368 |
$(EXPORT_SERVER_DIR)/%.pdb: $(C2_BUILD_DIR)/%.pdb |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
369 |
$(install-file) |
17382 | 370 |
$(EXPORT_SERVER_DIR)/%.map: $(C2_BUILD_DIR)/%.map |
1 | 371 |
$(install-file) |
17382 | 372 |
$(EXPORT_LIB_DIR)/%.lib: $(C2_BUILD_DIR)/%.lib |
1 | 373 |
$(install-file) |
17382 | 374 |
$(EXPORT_JRE_BIN_DIR)/%.diz: $(C2_BUILD_DIR)/%.diz |
1 | 375 |
$(install-file) |
17382 | 376 |
$(EXPORT_JRE_BIN_DIR)/%.dll: $(C2_BUILD_DIR)/%.dll |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
377 |
$(install-file) |
17382 | 378 |
$(EXPORT_JRE_BIN_DIR)/%.pdb: $(C2_BUILD_DIR)/%.pdb |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
379 |
$(install-file) |
17382 | 380 |
$(EXPORT_JRE_BIN_DIR)/%.map: $(C2_BUILD_DIR)/%.map |
1 | 381 |
$(install-file) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
382 |
# Unix |
17382 | 383 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C2_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
1 | 384 |
$(install-file) |
17382 | 385 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(C2_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
1 | 386 |
$(install-file) |
17382 | 387 |
$(EXPORT_SERVER_DIR)/64/%.$(LIBRARY_SUFFIX): $(C2_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
388 |
$(install-file) |
17382 | 389 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C2_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
390 |
$(install-file) |
17382 | 391 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(C2_BUILD_DIR)/%.debuginfo |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
392 |
$(install-file) |
17382 | 393 |
$(EXPORT_SERVER_DIR)/64/%.debuginfo: $(C2_BUILD_DIR)/%.debuginfo |
1 | 394 |
$(install-file) |
17382 | 395 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(C2_BUILD_DIR)/%.diz |
1 | 396 |
$(install-file) |
17382 | 397 |
$(EXPORT_SERVER_DIR)/64/%.diz: $(C2_BUILD_DIR)/%.diz |
1 | 398 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
399 |
# MacOS X |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
400 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: $(C2_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
401 |
$(install-dir) |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
402 |
$(EXPORT_SERVER_DIR)/%.dSYM: $(C2_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
403 |
$(install-dir) |
1 | 404 |
endif |
405 |
||
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
406 |
# Client (C1) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
407 |
ifeq ($(JVM_VARIANT_CLIENT), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
408 |
# Common |
17382 | 409 |
$(EXPORT_CLIENT_DIR)/%.diz: $(C1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
410 |
$(install-file) |
17382 | 411 |
$(EXPORT_LIB_DIR)/%.jar: $(C1_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
412 |
$(install-file) |
17382 | 413 |
$(EXPORT_INCLUDE_DIR)/%: $(C1_BUILD_DIR)/../generated/jvmtifiles/% |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
414 |
$(install-file) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
415 |
# Windows |
17382 | 416 |
$(EXPORT_CLIENT_DIR)/%.dll: $(C1_BUILD_DIR)/%.dll |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
417 |
$(install-file) |
17382 | 418 |
$(EXPORT_CLIENT_DIR)/%.pdb: $(C1_BUILD_DIR)/%.pdb |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
419 |
$(install-file) |
17382 | 420 |
$(EXPORT_CLIENT_DIR)/%.map: $(C1_BUILD_DIR)/%.map |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
421 |
$(install-file) |
17382 | 422 |
$(EXPORT_LIB_DIR)/%.lib: $(C1_BUILD_DIR)/%.lib |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
423 |
$(install-file) |
17382 | 424 |
$(EXPORT_JRE_BIN_DIR)/%.diz: $(C1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
425 |
$(install-file) |
17382 | 426 |
$(EXPORT_JRE_BIN_DIR)/%.dll: $(C1_BUILD_DIR)/%.dll |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
427 |
$(install-file) |
17382 | 428 |
$(EXPORT_JRE_BIN_DIR)/%.pdb: $(C1_BUILD_DIR)/%.pdb |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
429 |
$(install-file) |
17382 | 430 |
$(EXPORT_JRE_BIN_DIR)/%.map: $(C1_BUILD_DIR)/%.map |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
431 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
432 |
# Unix |
17382 | 433 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
434 |
$(install-file) |
17382 | 435 |
$(EXPORT_CLIENT_DIR)/%.$(LIBRARY_SUFFIX): $(C1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
436 |
$(install-file) |
17382 | 437 |
$(EXPORT_CLIENT_DIR)/64/%.$(LIBRARY_SUFFIX): $(C1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
438 |
$(install-file) |
17382 | 439 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
440 |
$(install-file) |
17382 | 441 |
$(EXPORT_CLIENT_DIR)/%.debuginfo: $(C1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
442 |
$(install-file) |
17382 | 443 |
$(EXPORT_CLIENT_DIR)/64/%.debuginfo: $(C1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
444 |
$(install-file) |
17382 | 445 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(C1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
446 |
$(install-file) |
17382 | 447 |
$(EXPORT_CLIENT_DIR)/64/%.diz: $(C1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
448 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
449 |
# MacOS X |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
450 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: $(C1_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
451 |
$(install-dir) |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
452 |
$(EXPORT_CLIENT_DIR)/%.dSYM: $(C1_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
453 |
$(install-dir) |
1 | 454 |
endif |
455 |
||
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
456 |
# Minimal1 |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
457 |
ifeq ($(JVM_VARIANT_MINIMAL1), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
458 |
# Common |
17382 | 459 |
$(EXPORT_MINIMAL_DIR)/%.diz: $(MINIMAL1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
460 |
$(install-file) |
17382 | 461 |
$(EXPORT_LIB_DIR)/%.jar: $(MINIMAL1_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
462 |
$(install-file) |
17382 | 463 |
$(EXPORT_INCLUDE_DIR)/%: $(MINIMAL1_BUILD_DIR)/../generated/jvmtifiles/% |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
464 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
465 |
# Windows |
17382 | 466 |
$(EXPORT_MINIMAL_DIR)/%.dll: $(MINIMAL1_BUILD_DIR)/%.dll |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
467 |
$(install-file) |
17382 | 468 |
$(EXPORT_MINIMAL_DIR)/%.pdb: $(MINIMAL1_BUILD_DIR)/%.pdb |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
469 |
$(install-file) |
17382 | 470 |
$(EXPORT_MINIMAL_DIR)/%.map: $(MINIMAL1_BUILD_DIR)/%.map |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
471 |
$(install-file) |
17382 | 472 |
$(EXPORT_LIB_DIR)/%.lib: $(MINIMAL1_BUILD_DIR)/%.lib |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
473 |
$(install-file) |
17382 | 474 |
$(EXPORT_JRE_BIN_DIR)/%.diz: $(MINIMAL1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
475 |
$(install-file) |
17382 | 476 |
$(EXPORT_JRE_BIN_DIR)/%.dll: $(MINIMAL1_BUILD_DIR)/%.dll |
1 | 477 |
$(install-file) |
17382 | 478 |
$(EXPORT_JRE_BIN_DIR)/%.pdb: $(MINIMAL1_BUILD_DIR)/%.pdb |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
479 |
$(install-file) |
17382 | 480 |
$(EXPORT_JRE_BIN_DIR)/%.map: $(MINIMAL1_BUILD_DIR)/%.map |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
481 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
482 |
# Unix |
17382 | 483 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(MINIMAL1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
484 |
$(install-file) |
17382 | 485 |
$(EXPORT_MINIMAL_DIR)/%.$(LIBRARY_SUFFIX): $(MINIMAL1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
486 |
$(install-file) |
17382 | 487 |
$(EXPORT_MINIMAL_DIR)/64/%.$(LIBRARY_SUFFIX): $(MINIMAL1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
488 |
$(install-file) |
17382 | 489 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(MINIMAL1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
490 |
$(install-file) |
17382 | 491 |
$(EXPORT_MINIMAL_DIR)/%.debuginfo: $(MINIMAL1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
492 |
$(install-file) |
17382 | 493 |
$(EXPORT_MINIMAL_DIR)/64/%.debuginfo: $(MINIMAL1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
494 |
$(install-file) |
17382 | 495 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(MINIMAL1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
496 |
$(install-file) |
17382 | 497 |
$(EXPORT_MINIMAL_DIR)/64/%.diz: $(MINIMAL1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
498 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
499 |
# MacOS X does not support Minimal1 config |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
500 |
endif |
1 | 501 |
|
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
502 |
# Zero |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
503 |
ifeq ($(JVM_VARIANT_ZERO), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
504 |
# Common |
17382 | 505 |
$(EXPORT_LIB_DIR)/%.jar: $(ZERO_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
506 |
$(install-file) |
17382 | 507 |
$(EXPORT_INCLUDE_DIR)/%: $(ZERO_BUILD_DIR)/../generated/jvmtifiles/% |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
508 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
509 |
# Unix |
17382 | 510 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
511 |
$(install-file) |
17382 | 512 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(ZERO_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
513 |
$(install-file) |
17382 | 514 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(ZERO_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
515 |
$(install-file) |
17382 | 516 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
517 |
$(install-file) |
17382 | 518 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(ZERO_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
519 |
$(install-file) |
17382 | 520 |
$(EXPORT_SERVER_DIR)/%.diz: $(ZERO_BUILD_DIR)/%.diz |
1 | 521 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
522 |
# MacOS X |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
523 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: $(ZERO_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
524 |
$(install-dir) |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
525 |
$(EXPORT_SERVER_DIR)/%.dSYM: $(ZERO_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
526 |
$(install-dir) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
527 |
endif |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
528 |
|
22805 | 529 |
# Core |
530 |
ifeq ($(JVM_VARIANT_CORE), true) |
|
531 |
# Common |
|
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
532 |
$(EXPORT_LIB_DIR)/%.jar: $(CORE_BUILD_DIR)/../generated/%.jar |
22805 | 533 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
534 |
$(EXPORT_INCLUDE_DIR)/%: $(CORE_BUILD_DIR)/../generated/jvmtifiles/% |
22805 | 535 |
$(install-file) |
536 |
# Unix |
|
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
537 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(CORE_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
22805 | 538 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
539 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(CORE_BUILD_DIR)/%.debuginfo |
22805 | 540 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
541 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(CORE_BUILD_DIR)/%.diz |
22805 | 542 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
543 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(CORE_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
22805 | 544 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
545 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(CORE_BUILD_DIR)/%.debuginfo |
22805 | 546 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
547 |
$(EXPORT_SERVER_DIR)/%.diz: $(CORE_BUILD_DIR)/%.diz |
22805 | 548 |
$(install-file) |
549 |
endif |
|
550 |
||
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
551 |
# Shark |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
552 |
ifeq ($(JVM_VARIANT_ZEROSHARK), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
553 |
# Common |
17382 | 554 |
$(EXPORT_LIB_DIR)/%.jar: $(SHARK_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
555 |
$(install-file) |
17382 | 556 |
$(EXPORT_INCLUDE_DIR)/%: $(SHARK_BUILD_DIR)/../generated/jvmtifiles/% |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
557 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
558 |
# Unix |
17382 | 559 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
560 |
$(install-file) |
17382 | 561 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo): $(SHARK_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
562 |
$(install-file) |
17382 | 563 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(SHARK_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
564 |
$(install-file) |
17382 | 565 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
566 |
$(install-file) |
17382 | 567 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(SHARK_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
568 |
$(install-file) |
17382 | 569 |
$(EXPORT_SERVER_DIR)/%.diz: $(SHARK_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
570 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
571 |
# MacOS X |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
572 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: $(SHARK_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
573 |
$(install-dir) |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
574 |
$(EXPORT_SERVER_DIR)/%.dSYM: $(SHARK_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
575 |
$(install-dir) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
576 |
endif |
1 | 577 |
|
4732
a70548606f73
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
670
diff
changeset
|
578 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/code/% |
a70548606f73
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
670
diff
changeset
|
579 |
$(install-file) |
a70548606f73
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
670
diff
changeset
|
580 |
|
1 | 581 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/prims/% |
582 |
$(install-file) |
|
583 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
584 |
HS_JNI_ARCH_SRC=$(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(HS_ARCH)/vm/jni_$(HS_ARCH).h) |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
585 |
$(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h: $(HS_JNI_ARCH_SRC) |
1 | 586 |
$(install-file) |
587 |
||
588 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/services/% |
|
589 |
$(install-file) |
|
590 |
||
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
591 |
JFR_EXISTS=$(shell if [ -d $(HS_ALT_SRC) ]; then echo 1; else echo 0; fi) |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
592 |
# export jfr.h |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
593 |
ifeq ($JFR_EXISTS,1) |
18025 | 594 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_ALT_SRC)/share/vm/jfr/% |
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
595 |
$(install-file) |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
596 |
else |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
597 |
$(EXPORT_INCLUDE_DIR)/jfr.h: |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
598 |
endif |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
599 |
|
1 | 600 |
# Doc files (jvmti.html) |
601 |
$(EXPORT_DOCS_DIR)/platform/jvmti/%: $(DOCS_DIR)/% |
|
602 |
$(install-file) |
|
603 |
||
604 |
# Xusage file |
|
15432 | 605 |
$(EXPORT_SERVER_DIR)/Xusage.txt $(EXPORT_CLIENT_DIR)/Xusage.txt $(EXPORT_MINIMAL_DIR)/Xusage.txt: $(XUSAGE) |
1 | 606 |
$(prep-target) |
607 |
$(RM) $@.temp |
|
608 |
$(SED) 's/\(separated by \)[;:]/\1$(PATH_SEP)/g' $< > $@.temp |
|
609 |
$(MV) $@.temp $@ |
|
610 |
||
611 |
# |
|
612 |
# Clean rules |
|
613 |
# |
|
614 |
clobber clean: clean_build clean_export clean_jdk |
|
615 |
clean_build: |
|
616 |
$(RM) -r $(C1_DIR) |
|
617 |
$(RM) -r $(C2_DIR) |
|
22805 | 618 |
$(RM) -r $(CORE_DIR) |
4013 | 619 |
$(RM) -r $(ZERO_DIR) |
6187 | 620 |
$(RM) -r $(SHARK_DIR) |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
621 |
$(RM) -r $(MINIMAL1_DIR) |
1 | 622 |
clean_export: |
623 |
$(RM) -r $(EXPORT_PATH) |
|
624 |
clean_jdk: |
|
625 |
$(RM) -r $(JDK_IMAGE_DIR) |
|
626 |
||
627 |
# |
|
628 |
# Create JDK and place this build into it |
|
629 |
# |
|
630 |
create_jdk: copy_jdk update_jdk |
|
631 |
||
632 |
update_jdk: export_product_jdk export_fastdebug_jdk test_jdk |
|
633 |
||
634 |
copy_jdk: $(JDK_IMAGE_DIR)/jre/lib/rt.jar |
|
635 |
||
636 |
$(JDK_IMAGE_DIR)/jre/lib/rt.jar: |
|
637 |
$(RM) -r $(JDK_IMAGE_DIR) |
|
638 |
$(MKDIR) -p $(JDK_IMAGE_DIR) |
|
639 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
640 |
$(TAR) -cf - *) | \ |
|
641 |
($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -) |
|
642 |
||
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
643 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
644 |
# Testing the built JVM |
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20686
diff
changeset
|
645 |
RUN_JVM=JAVA_HOME=$(JDK_IMPORT_PATH) $(JDK_IMPORT_PATH)/bin/java -d$(ARCH_DATA_MODEL) -XXaltjvm=$(ALTJVM_DIR) -Dsun.java.launcher.is_altjvm=true |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
646 |
generic_test: |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
647 |
@$(ECHO) "Running with: $(ALTJVM_DIR)" |
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20686
diff
changeset
|
648 |
@$(RUN_JVM) -Xinternalversion |
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20686
diff
changeset
|
649 |
@$(RUN_JVM) -showversion -help |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
650 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
651 |
# C2 test targets |
17006 | 652 |
test_product test_optimized test_fastdebug test_debug: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
653 |
@$(MAKE) generic_test ALTJVM_DIR="$(C2_DIR)/$(@:test_%=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
654 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
655 |
# C1 test targets |
17006 | 656 |
test_product1 test_optimized1 test_fastdebug1 test_debug1: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
657 |
ifeq ($(ARCH_DATA_MODEL), 32) |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
658 |
@$(MAKE) generic_test ALTJVM_DIR="$(C1_DIR)/$(@:test_%1=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
659 |
else |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
660 |
@$(ECHO) "No compiler1 ($(@:test_%=%)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
661 |
endif |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
662 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
663 |
# Zero test targets |
17006 | 664 |
test_productzero test_optimizedzero test_fastdebugzero test_debugzero: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
665 |
@$(MAKE) generic_test ALTJVM_DIR="$(ZERO_DIR)/$(@:test_%zero=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
666 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
667 |
# Shark test targets |
17006 | 668 |
test_productshark test_optimizedshark test_fastdebugshark test_debugshark: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
669 |
@$(MAKE) generic_test ALTJVM_DIR="$(SHARK_DIR)/$(@:test_%shark=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
670 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
671 |
# Minimal1 test targets |
17006 | 672 |
test_productminimal1 test_optimizedminimal1 test_fastdebugminimal1 test_debugminimal1: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
673 |
@$(MAKE) generic_test ALTJVM_DIR="$(MINIMAL1_DIR)/$(@:test_%minimal1=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
674 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
675 |
|
1 | 676 |
test_jdk: |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
677 |
ifeq ($(JVM_VARIANT_CLIENT), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
678 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -client -Xinternalversion |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
679 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -client -version |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
680 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
681 |
ifeq ($(findstring true, $(JVM_VARIANT_SERVER)\ |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
682 |
$(JVM_VARIANT_ZERO)$(JVM_VARIANT_ZEROSHARK)), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
683 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -server -Xinternalversion |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
684 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -server -version |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
685 |
endif |
1 | 686 |
|
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
687 |
copy_product_jdk:: |
1 | 688 |
$(RM) -r $(JDK_IMAGE_DIR) |
689 |
$(MKDIR) -p $(JDK_IMAGE_DIR) |
|
690 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
691 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 692 |
($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -) |
693 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
694 |
copy_fastdebug_jdk:: |
1 | 695 |
$(RM) -r $(JDK_IMAGE_DIR)/fastdebug |
696 |
$(MKDIR) -p $(JDK_IMAGE_DIR)/fastdebug |
|
697 |
if [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \ |
|
698 |
($(CD) $(JDK_IMPORT_PATH)/fastdebug && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
699 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 700 |
($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \ |
701 |
else \ |
|
702 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
703 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 704 |
($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \ |
705 |
fi |
|
706 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
707 |
copy_debug_jdk:: |
1 | 708 |
$(RM) -r $(JDK_IMAGE_DIR)/debug |
709 |
$(MKDIR) -p $(JDK_IMAGE_DIR)/debug |
|
710 |
if [ -d $(JDK_IMPORT_PATH)/debug ] ; then \ |
|
711 |
($(CD) $(JDK_IMPORT_PATH)/debug && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
712 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 713 |
($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \ |
714 |
elif [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \ |
|
715 |
($(CD) $(JDK_IMPORT_PATH)/fastdebug && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
716 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 717 |
($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \ |
718 |
else \ |
|
719 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
720 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 721 |
($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \ |
722 |
fi |
|
723 |
||
724 |
# |
|
725 |
# Check target |
|
726 |
# |
|
727 |
check: variable_check |
|
728 |
||
729 |
# |
|
730 |
# Help target |
|
731 |
# |
|
732 |
help: intro_help target_help variable_help notes_help examples_help |
|
733 |
||
734 |
# Intro help message |
|
735 |
intro_help: |
|
736 |
@$(ECHO) \ |
|
17006 | 737 |
"Makefile for the Hotspot workspace." |
1 | 738 |
@$(ECHO) \ |
739 |
"Default behavior is to build and create an export area for the j2se builds." |
|
740 |
||
741 |
# Target help |
|
742 |
target_help: |
|
743 |
@$(ECHO) "help: This help message" |
|
744 |
@$(ECHO) "all: Same as: all_product all_fastdebug" |
|
745 |
@$(ECHO) "world: Same as: all create_jdk" |
|
746 |
@$(ECHO) "all_product: Same as: product product1 export_product" |
|
747 |
@$(ECHO) "all_fastdebug: Same as: fastdebug fastdebug1 export_fastdebug" |
|
17006 | 748 |
@$(ECHO) "all_debug: Same as: debug debug1 export_debug" |
1 | 749 |
@$(ECHO) "all_optimized: Same as: optimized optimized1 export_optimized" |
750 |
@$(ECHO) "clean: Clean all areas" |
|
751 |
@$(ECHO) "export_product: Export product files to EXPORT_PATH" |
|
752 |
@$(ECHO) "export_fastdebug: Export fastdebug files to EXPORT_PATH" |
|
753 |
@$(ECHO) "export_debug: Export debug files to EXPORT_PATH" |
|
754 |
@$(ECHO) "export_optimized: Export optimized files to EXPORT_PATH" |
|
755 |
@$(ECHO) "create_jdk: Create JDK image, export all files into it" |
|
756 |
@$(ECHO) "update_jdk: Update JDK image with fresh exported files" |
|
757 |
@$(ECHO) " " |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
758 |
@$(ECHO) "Other targets are:" |
1 | 759 |
@$(ECHO) " $(C1_VM_TARGETS)" |
760 |
@$(ECHO) " $(C2_VM_TARGETS)" |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
761 |
@$(ECHO) " $(MINIMAL1_VM_TARGETS)" |
1 | 762 |
|
763 |
# Variable help (only common ones used by this workspace) |
|
764 |
variable_help: variable_help_intro variable_list variable_help_end |
|
765 |
variable_help_intro: |
|
766 |
@$(ECHO) "--- Common Variables ---" |
|
767 |
variable_help_end: |
|
768 |
@$(ECHO) " " |
|
769 |
@$(ECHO) "--- Make Arguments ---" |
|
770 |
@$(ECHO) "MAKE_ARGS=$(MAKE_ARGS)" |
|
771 |
||
772 |
# One line descriptions for the variables |
|
773 |
SLASH_JAVA.desc = Root of all build tools, e.g. /java or J: |
|
774 |
OUTPUTDIR.desc = Output directory, default is build/<osname> |
|
775 |
BOOTDIR.desc = JDK used to compile agent java source and test with |
|
776 |
JDK_IMPORT_PATH.desc = Promoted JDK to copy for 'create_jdk' |
|
11784
715f58266a42
7143766: add ALT_JDK_IMAGE_DIR and improve test_jdk
twisti
parents:
11629
diff
changeset
|
777 |
JDK_IMAGE_DIR.desc = Directory to place JDK to copy |
1 | 778 |
EXPORT_PATH.desc = Directory to place files to export for JDK build |
779 |
||
780 |
# Make variables to print out (description and value) |
|
781 |
VARIABLE_PRINTVAL_LIST += \ |
|
782 |
SLASH_JAVA \ |
|
783 |
OUTPUTDIR \ |
|
784 |
BOOTDIR \ |
|
785 |
JDK_IMPORT_PATH \ |
|
11784
715f58266a42
7143766: add ALT_JDK_IMAGE_DIR and improve test_jdk
twisti
parents:
11629
diff
changeset
|
786 |
JDK_IMAGE_DIR \ |
1 | 787 |
EXPORT_PATH |
788 |
||
789 |
# Make variables that should refer to directories that exist |
|
790 |
VARIABLE_CHECKDIR_LIST += \ |
|
791 |
SLASH_JAVA \ |
|
792 |
BOOTDIR \ |
|
793 |
JDK_IMPORT_PATH |
|
794 |
||
795 |
# For pattern rules below, so all are treated the same |
|
796 |
DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval) |
|
797 |
DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir) |
|
798 |
||
799 |
# Complete variable check |
|
800 |
variable_check: $(DO_CHECKDIR_LIST) |
|
801 |
variable_list: $(DO_PRINTVAL_LIST) variable_check |
|
802 |
||
803 |
# Pattern rule for printing out a variable |
|
804 |
%.printval: |
|
805 |
@$(ECHO) " ALT_$* - $($*.desc)" |
|
806 |
@$(ECHO) " $*=$($*)" |
|
807 |
||
808 |
# Pattern rule for checking to see if a variable with a directory exists |
|
809 |
%.checkdir: |
|
810 |
@if [ ! -d $($*) ] ; then \ |
|
811 |
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
812 |
fi |
|
813 |
||
814 |
# Pattern rule for checking to see if a variable with a file exists |
|
815 |
%.checkfil: |
|
816 |
@if [ ! -f $($*) ] ; then \ |
|
817 |
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
818 |
fi |
|
819 |
||
820 |
# Misc notes on help |
|
821 |
notes_help: |
|
822 |
@$(ECHO) \ |
|
823 |
"--- Notes --- " |
|
824 |
@$(ECHO) \ |
|
825 |
"- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted" |
|
826 |
@$(ECHO) \ |
|
827 |
" builds or previous release JDK builds will work." |
|
828 |
@$(ECHO) \ |
|
829 |
"- The fastest builds have been when the workspace and the BOOTDIR are on" |
|
830 |
@$(ECHO) \ |
|
831 |
" local disk." |
|
832 |
||
833 |
examples_help: |
|
834 |
@$(ECHO) \ |
|
835 |
"--- Examples --- " |
|
836 |
@$(ECHO) \ |
|
837 |
" $(MAKE) all" |
|
838 |
@$(ECHO) \ |
|
839 |
" $(MAKE) world" |
|
840 |
@$(ECHO) \ |
|
17006 | 841 |
" $(MAKE) ALT_BOOTDIR=/opt/java/jdk$(PREVIOUS_JDK_VERSION)" |
1 | 842 |
@$(ECHO) \ |
843 |
" $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk$(JDK_VERSION)" |
|
844 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
845 |
# Universal build support |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
846 |
ifeq ($(OS_VENDOR), Darwin) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
847 |
ifeq ($(MACOSX_UNIVERSAL),true) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
848 |
include $(GAMMADIR)/make/$(OSNAME)/makefiles/universal.gmk |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
849 |
endif |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
850 |
endif |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
851 |
|
17006 | 852 |
# Compatibility for transition to new naming |
853 |
warn_jvmg_deprecated: |
|
854 |
echo "Warning: The jvmg target has been replaced with debug" |
|
855 |
echo "Warning: Please update your usage" |
|
856 |
||
857 |
jvmg: warn_jvmg_deprecated debug |
|
858 |
||
859 |
jvmg1: warn_jvmg_deprecated debug1 |
|
860 |
||
861 |
jvmgminimal1: warn_jvmg_deprecated debugminimal1 |
|
862 |
||
863 |
jvmgcore: warn_jvmg_deprecated debugcore |
|
864 |
||
865 |
jvmgzero: warn_jvmg_deprecated debugzero |
|
866 |
||
867 |
jvmgshark: warn_jvmg_deprecated debugshark |
|
868 |
||
1 | 869 |
# JPRT rule to build this workspace |
870 |
include $(GAMMADIR)/make/jprt.gmk |
|
871 |
||
872 |
.PHONY: all world clobber clean help $(C1_VM_TARGETS) $(C2_VM_TARGETS) \ |
|
15432 | 873 |
$(MINIMAL1_VM_TARGETS) \ |
874 |
generic_build1 generic_build2 generic_buildminimal1 generic_export \ |
|
1 | 875 |
export_product export_fastdebug export_debug export_optimized \ |
876 |
export_jdk_product export_jdk_fastdebug export_jdk_debug \ |
|
877 |
create_jdk copy_jdk update_jdk test_jdk \ |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
878 |
copy_product_jdk copy_fastdebug_jdk copy_debug_jdk \ |
23507
b4339e4c239b
8033580: Old debug information in IMPORT_JDK is not removed
ehelin
parents:
22876
diff
changeset
|
879 |
$(HS_ALT_MAKE)/Makefile.make remove_old_debuginfo |