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